Stub for VideoCapDriverDescAndVer.

This commit is contained in:
Marcus Meissner 1999-10-13 12:16:51 +00:00 committed by Alexandre Julliard
parent d87a8abbbc
commit 0d4f3cfb1f
2 changed files with 10 additions and 1 deletions

View File

@ -4,7 +4,7 @@ type win16
2 pascal VideoForWindowsVersion() VideoForWindowsVersion 2 pascal VideoForWindowsVersion() VideoForWindowsVersion
20 stub VIDEOGETNUMDEVS 20 stub VIDEOGETNUMDEVS
21 stub VIDEOGETERRORTEXT 21 stub VIDEOGETERRORTEXT
22 stub VIDEOCAPDRIVERDESCANDVER 22 pascal VIDEOCAPDRIVERDESCANDVER(word ptr word ptr word) VideoCapDriverDescAndVer
28 stub VIDEOOPEN 28 stub VIDEOOPEN
29 stub VIDEOCLOSE 29 stub VIDEOCLOSE
30 stub VIDEODIALOG 30 stub VIDEODIALOG

View File

@ -24,6 +24,15 @@ VideoForWindowsVersion(void) {
return 0x040003B6; /* 4.950 */ return 0x040003B6; /* 4.950 */
} }
/****************************************************************************
* VideoCapDriverDescAndVer [MSVIDEO.22]
*/
DWORD WINAPI
VideoCapDriverDescAndVer(WORD nr,LPVOID buf1,WORD buf1len,LPVOID buf2,WORD buf2len) {
FIXME("(%d,%p,%d,%p,%d), stub!\n",nr,buf1,buf1len,buf2,buf2len);
return 0;
}
/* system.ini: [drivers] */ /* system.ini: [drivers] */
/************************************************************************** /**************************************************************************