Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
702aafe3
Commit
702aafe3
authored
Oct 05, 2006
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Oct 05, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cfgmgr32: Win64 printf format warning fixes.
parent
85db0937
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
4 deletions
+3
-4
Makefile.in
dlls/cfgmgr32/Makefile.in
+0
-1
main.c
dlls/cfgmgr32/main.c
+3
-3
No files found.
dlls/cfgmgr32/Makefile.in
View file @
702aafe3
...
...
@@ -5,7 +5,6 @@ VPATH = @srcdir@
MODULE
=
cfgmgr32.dll
IMPORTLIB
=
libcfgmgr32.
$(IMPLIBEXT)
IMPORTS
=
setupapi kernel32
EXTRADEFS
=
-DWINE_NO_LONG_AS_INT
C_SRCS
=
\
main.c
...
...
dlls/cfgmgr32/main.c
View file @
702aafe3
...
...
@@ -51,7 +51,7 @@ BOOL WINAPI DllMain( HINSTANCE inst, DWORD reason, LPVOID reserved )
CONFIGRET
WINAPI
CM_Get_Device_ID_ListA
(
PCSTR
pszFilter
,
PCHAR
Buffer
,
ULONG
BufferLen
,
ULONG
ulFlags
)
{
FIXME
(
"%p %p %
ld %l
d
\n
"
,
pszFilter
,
Buffer
,
BufferLen
,
ulFlags
);
FIXME
(
"%p %p %
d %
d
\n
"
,
pszFilter
,
Buffer
,
BufferLen
,
ulFlags
);
memset
(
Buffer
,
0
,
2
);
return
CR_SUCCESS
;
}
...
...
@@ -62,7 +62,7 @@ CONFIGRET WINAPI CM_Get_Device_ID_ListA(
CONFIGRET
WINAPI
CM_Get_Device_ID_Size
(
ULONG
*
pulLen
,
LPVOID
dnDevInst
,
ULONG
ulFlags
)
{
FIXME
(
"%p %p %
l
u
\n
"
,
pulLen
,
dnDevInst
,
ulFlags
);
FIXME
(
"%p %p %u
\n
"
,
pulLen
,
dnDevInst
,
ulFlags
);
*
pulLen
=
1
;
return
CR_SUCCESS
;
}
...
...
@@ -73,7 +73,7 @@ CONFIGRET WINAPI CM_Get_Device_ID_Size( ULONG* pulLen, LPVOID dnDevInst,
CONFIGRET
WINAPI
CM_Get_Device_IDA
(
LPVOID
dnDevInst
,
LPSTR
Buffer
,
ULONG
BufferLen
,
ULONG
ulFlags
)
{
FIXME
(
"%p, %p, %
lu %l
u
\n
"
,
dnDevInst
,
Buffer
,
BufferLen
,
ulFlags
);
FIXME
(
"%p, %p, %
u %
u
\n
"
,
dnDevInst
,
Buffer
,
BufferLen
,
ulFlags
);
Buffer
[
0
]
=
0
;
return
CR_SUCCESS
;
}
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