Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Sam Joan Roque-Worcel
wine
Commits
4df78822
Commit
4df78822
authored
23 years ago
by
Hidenori Takeshima
Committed by
Alexandre Julliard
23 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Added stubs.
parent
c8764e4d
No related branches found
Branches containing commit
Tags
wine-960818
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
dlls/avicap32/avicap32.spec
+5
-5
5 additions, 5 deletions
dlls/avicap32/avicap32.spec
dlls/avicap32/avicap32_main.c
+78
-1
78 additions, 1 deletion
dlls/avicap32/avicap32_main.c
with
83 additions
and
6 deletions
dlls/avicap32/avicap32.spec
+
5
−
5
View file @
4df78822
...
...
@@ -3,9 +3,9 @@ type win32
import ntdll.dll
debug_channels
(
)
debug_channels
(avicap32
)
@ st
ub
capCreateCaptureWindowA
@ st
ub
capCreateCaptureWindowW
@ st
ub
capGetDriverDescriptionA
@ st
ub
capGetDriverDescriptionW
@ st
dcall capCreateCaptureWindowA(str long long long long long long long)
capCreateCaptureWindowA
@ st
dcall capCreateCaptureWindowW(wstr long long long long long long long)
capCreateCaptureWindowW
@ st
dcall capGetDriverDescriptionA(long ptr long ptr long)
capGetDriverDescriptionA
@ st
dcall capGetDriverDescriptionW(long ptr long ptr long)
capGetDriverDescriptionW
This diff is collapsed.
Click to expand it.
dlls/avicap32/avicap32_main.c
+
78
−
1
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
;
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment