Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
4df78822
Commit
4df78822
authored
Mar 19, 2002
by
Hidenori Takeshima
Committed by
Alexandre Julliard
Mar 19, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added stubs.
parent
c8764e4d
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
83 additions
and
6 deletions
+83
-6
avicap32.spec
dlls/avicap32/avicap32.spec
+5
-5
avicap32_main.c
dlls/avicap32/avicap32_main.c
+78
-1
No files found.
dlls/avicap32/avicap32.spec
View file @
4df78822
...
@@ -3,9 +3,9 @@ type win32
...
@@ -3,9 +3,9 @@ type win32
import ntdll.dll
import ntdll.dll
debug_channels
(
)
debug_channels
(avicap32
)
@ st
ub
capCreateCaptureWindowA
@ st
dcall capCreateCaptureWindowA(str long long long long long long long)
capCreateCaptureWindowA
@ st
ub
capCreateCaptureWindowW
@ st
dcall capCreateCaptureWindowW(wstr long long long long long long long)
capCreateCaptureWindowW
@ st
ub
capGetDriverDescriptionA
@ st
dcall capGetDriverDescriptionA(long ptr long ptr long)
capGetDriverDescriptionA
@ st
ub
capGetDriverDescriptionW
@ st
dcall capGetDriverDescriptionW(long ptr long ptr long)
capGetDriverDescriptionW
dlls/avicap32/avicap32_main.c
View file @
4df78822
/* nothing here yet */
/*
* Copyright (C) Hidenori TAKESHIMA
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* FIXME - stub
*/
#include "winbase.h"
#include "winuser.h"
#include "wingdi.h"
#include "vfw.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
avicap32
);
/***********************************************************************
*
* capCreateCaptureWindowA (AVICAP.@)
*
*/
HWND
WINAPI
capCreateCaptureWindowA
(
LPCSTR
pszTitle
,
DWORD
dwStyle
,
int
x
,
int
y
,
int
width
,
int
height
,
HWND
hwndParent
,
int
nID
)
{
FIXME
(
"(%s,%lx,%d,%d,%d,%d,%x,%d)
\n
"
,
debugstr_a
(
pszTitle
),
dwStyle
,
x
,
y
,
width
,
height
,
hwndParent
,
nID
);
return
(
HWND
)
NULL
;
}
/***********************************************************************
*
* capCreateCaptureWindowW (AVICAP.@)
*
*/
HWND
WINAPI
capCreateCaptureWindowW
(
LPCWSTR
pwszTitle
,
DWORD
dwStyle
,
int
x
,
int
y
,
int
width
,
int
height
,
HWND
hwndParent
,
int
nID
)
{
FIXME
(
"(%s,%lx,%d,%d,%d,%d,%x,%d)
\n
"
,
debugstr_w
(
pwszTitle
),
dwStyle
,
x
,
y
,
width
,
height
,
hwndParent
,
nID
);
return
(
HWND
)
NULL
;
}
/***********************************************************************
*
* capGetDriverDescriptionA (AVICAP.@)
*
*/
BOOL
WINAPI
capGetDriverDescriptionA
(
UINT
uDriverIndex
,
LPSTR
pszName
,
int
cbName
,
LPSTR
pszVersion
,
int
cbVersion
)
{
FIXME
(
"(%u,%p,%d,%p,%d)
\n
"
,
uDriverIndex
,
pszName
,
cbName
,
pszVersion
,
cbVersion
);
return
FALSE
;
}
/***********************************************************************
*
* capGetDriverDescriptionW (AVICAP.@)
*
*/
BOOL
WINAPI
capGetDriverDescriptionW
(
UINT
uDriverIndex
,
LPWSTR
pwszName
,
int
cbName
,
LPWSTR
pwszVersion
,
int
cbVersion
)
{
FIXME
(
"(%u,%p,%d,%p,%d)
\n
"
,
uDriverIndex
,
pwszName
,
cbName
,
pwszVersion
,
cbVersion
);
return
FALSE
;
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment