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
15b46847
Commit
15b46847
authored
Sep 13, 2006
by
James Hawkins
Committed by
Alexandre Julliard
Sep 14, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
setupapi: Add stubs for SetupOpenLog, SetupCloseLog, and SetupLogError.
parent
7588b669
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
36 additions
and
2 deletions
+36
-2
setupapi.spec
dlls/setupapi/setupapi.spec
+3
-2
stubs.c
dlls/setupapi/stubs.c
+26
-0
setupapi.h
include/setupapi.h
+7
-0
No files found.
dlls/setupapi/setupapi.spec
View file @
15b46847
...
...
@@ -247,7 +247,7 @@
@ stub SetupCancelTemporarySourceList
@ stdcall SetupCloseFileQueue(ptr)
@ stdcall SetupCloseInfFile(long)
@ st
ub SetupCloseLog
@ st
dcall SetupCloseLog()
@ stdcall SetupCommitFileQueue(long long ptr ptr) SetupCommitFileQueueW
@ stdcall SetupCommitFileQueueA(long long ptr ptr)
@ stdcall SetupCommitFileQueueW(long long ptr ptr)
...
...
@@ -442,7 +442,7 @@
@ stdcall SetupIterateCabinetA(str long ptr ptr)
@ stdcall SetupIterateCabinetW(wstr long ptr ptr)
@ stub SetupLogErrorA
@ st
ub SetupLogErrorW
@ st
dcall SetupLogErrorW(wstr long)
@ stub SetupLogFileA
@ stub SetupLogFileW
@ stdcall SetupOpenAppendInfFileA(str long ptr)
...
...
@@ -450,6 +450,7 @@
@ stdcall SetupOpenFileQueue()
@ stdcall SetupOpenInfFileA(str str long ptr)
@ stdcall SetupOpenInfFileW(wstr wstr long ptr)
@ stdcall SetupOpenLog(long)
@ stdcall SetupOpenMasterInf()
@ stub SetupPromptForDiskA
@ stub SetupPromptForDiskW
...
...
dlls/setupapi/stubs.c
View file @
15b46847
...
...
@@ -196,3 +196,29 @@ BOOL WINAPI RegistryDelnode(DWORD x, DWORD y)
FIXME
(
"%08lx %08lx: stub
\n
"
,
x
,
y
);
return
FALSE
;
}
/***********************************************************************
* SetupCloseLog(SETUPAPI.@)
*/
void
WINAPI
SetupCloseLog
()
{
FIXME
(
"() stub
\n
"
);
}
/***********************************************************************
* SetupLogErrorW(SETUPAPI.@)
*/
BOOL
WINAPI
SetupLogErrorW
(
PCWSTR
MessageString
,
LogSeverity
Severity
)
{
FIXME
(
"(%s, %ld) stub
\n
"
,
debugstr_w
(
MessageString
),
Severity
);
return
TRUE
;
}
/***********************************************************************
* SetupOpenLog(SETUPAPI.@)
*/
BOOL
WINAPI
SetupOpenLog
(
BOOL
Reserved
)
{
FIXME
(
"(%d) stub
\n
"
,
Reserved
);
return
TRUE
;
}
include/setupapi.h
View file @
15b46847
...
...
@@ -690,6 +690,13 @@ DECL_WINELIB_SETUPAPI_TYPE_AW(PFILEPATHS)
#define INFINFO_REVERSE_DEFAULT_SEARCH 4
#define INFINFO_INF_PATH_LIST_SEARCH 5
#define LogSeverity DWORD
#define LogSevInformation 0x00000000
#define LogSevWarning 0x00000001
#define LogSevError 0x00000002
#define LogSevFatalError 0x00000003
#define LogSevMaximum 0x00000004
LONG
WINAPI
AddTagToGroupOrderList
(
PCWSTR
lpGroupName
,
DWORD
dwUnknown2
,
DWORD
dwUnknown3
);
DWORD
WINAPI
CaptureAndConvertAnsiArg
(
PCSTR
lpSrc
,
PWSTR
*
lpDst
);
DWORD
WINAPI
CaptureStringArg
(
PCWSTR
lpSrc
,
PWSTR
*
lpDst
);
...
...
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