Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDanny Smith <dannysmith@users.sourceforge.net>2005-04-25 11:08:22 +0400
committerDanny Smith <dannysmith@users.sourceforge.net>2005-04-25 11:08:22 +0400
commit4e069720c19118a009a660631f4c0730aa6bb05a (patch)
tree243a8d5be71de7895275026f1b2f5db8dd67d64d /winsup/w32api/include
parent46bf13ffc0e3995db978c6d4e2eebc45d4e41e0c (diff)
* include/vfw.h (capCreateCaptureWindow[AW]): Add prototypes.
(capGetDriverDescription[AW]): Likewise. ChangeLog: Typo fixes.
Diffstat (limited to 'winsup/w32api/include')
-rw-r--r--winsup/w32api/include/vfw.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/winsup/w32api/include/vfw.h b/winsup/w32api/include/vfw.h
index cce5e3126..8759f90a5 100644
--- a/winsup/w32api/include/vfw.h
+++ b/winsup/w32api/include/vfw.h
@@ -1057,6 +1057,12 @@ ICDecompressExQuery(HIC hic,DWORD dwFlags,LPBITMAPINFOHEADER lpbiSrc,LPVOID lpSr
return ICSendMessage(hic,ICM_DECOMPRESSEX_QUERY,(DWORD)&ic,sizeof(ic));
}
+/* AVICAP32 exports */
+HWND VFWAPI capCreateCaptureWindowA (LPCSTR,DWORD,int,int,int,int,HWND,int);
+HWND VFWAPI capCreateCaptureWindowW (LPCWSTR,DWORD,int,int,int,int,HWND,int);
+BOOL VFWAPI capGetDriverDescriptionA (UINT,LPSTR,int,LPSTR,int);
+BOOL VFWAPI capGetDriverDescriptionW (UINT,LPWSTR,int,LPWSTR,int);
+
#ifdef UNICODE
#define AVISTREAMINFO AVISTREAMINFOW
#define LPAVISTREAMINFO LPAVISTREAMINFOW
@@ -1088,6 +1094,10 @@ ICDecompressExQuery(HIC hic,DWORD dwFlags,LPBITMAPINFOHEADER lpbiSrc,LPVOID lpSr
#define MCIWNDM_NEW MCIWNDM_NEWW
#define MCIWNDM_RETURNSTRING MCIWNDM_RETURNSTRINGW
#define MCIWNDM_OPEN MCIWNDM_OPENW
+
+#define capCreateCaptureWindow capCreateCaptureWindowW
+#define capGetDriverDescription capGetDriverDescriptionW
+
#else
#define AVISTREAMINFO AVISTREAMINFOA
#define LPAVISTREAMINFO LPAVISTREAMINFOA
@@ -1119,6 +1129,10 @@ ICDecompressExQuery(HIC hic,DWORD dwFlags,LPBITMAPINFOHEADER lpbiSrc,LPVOID lpSr
#define MCIWNDM_NEW MCIWNDM_NEWA
#define MCIWNDM_RETURNSTRING MCIWNDM_RETURNSTRINGA
#define MCIWNDM_OPEN MCIWNDM_OPENA
+
+#define capCreateCaptureWindow capCreateCaptureWindowA
+#define capGetDriverDescription capGetDriverDescriptionA
+
#endif
#endif /* RC_INVOKED */