Updated lists of debugging channels.
[wine/testsucceed.git] / dlls / avicap32 / avicap32_main.c
blob3b8cefda6ed700e8caeb465bec649effd2cd9e79
1 /*
2 * Copyright (C) Hidenori TAKESHIMA
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 * FIXME - stub
21 #include "winbase.h"
22 #include "winuser.h"
23 #include "wingdi.h"
24 #include "vfw.h"
26 #include "wine/debug.h"
28 WINE_DEFAULT_DEBUG_CHANNEL(avicap32);
31 /***********************************************************************
33 * capCreateCaptureWindowA (AVICAP32.@)
36 HWND WINAPI capCreateCaptureWindowA( LPCSTR pszTitle, DWORD dwStyle, int x, int y, int width, int height, HWND hwndParent, int nID )
38 FIXME( "(%s,%lx,%d,%d,%d,%d,%x,%d)\n",debugstr_a(pszTitle),dwStyle,x,y,width,height,hwndParent,nID );
40 return (HWND)NULL;
43 /***********************************************************************
45 * capCreateCaptureWindowW (AVICAP32.@)
48 HWND WINAPI capCreateCaptureWindowW( LPCWSTR pwszTitle, DWORD dwStyle, int x, int y, int width, int height, HWND hwndParent, int nID )
50 FIXME( "(%s,%lx,%d,%d,%d,%d,%x,%d)\n",debugstr_w(pwszTitle),dwStyle,x,y,width,height,hwndParent,nID );
52 return (HWND)NULL;
55 /***********************************************************************
57 * capGetDriverDescriptionA (AVICAP32.@)
60 BOOL WINAPI capGetDriverDescriptionA( UINT uDriverIndex, LPSTR pszName, int cbName, LPSTR pszVersion, int cbVersion )
62 FIXME( "(%u,%p,%d,%p,%d)\n",uDriverIndex,pszName,cbName,pszVersion,cbVersion );
64 return FALSE;
67 /***********************************************************************
69 * capGetDriverDescriptionW (AVICAP32.@)
72 BOOL WINAPI capGetDriverDescriptionW( UINT uDriverIndex, LPWSTR pwszName, int cbName, LPWSTR pwszVersion, int cbVersion )
74 FIXME( "(%u,%p,%d,%p,%d)\n",uDriverIndex,pwszName,cbName,pwszVersion,cbVersion );
76 return FALSE;