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
c2d47ced
Commit
c2d47ced
authored
Aug 29, 2007
by
Francois Gouget
Committed by
Alexandre Julliard
Aug 30, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
setupapi: Add prototypes for the Setup*Log*() functions. Better stick to the PSDK types.
parent
2993785f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletion
+6
-1
stubs.c
dlls/setupapi/stubs.c
+1
-1
setupapi.h
include/setupapi.h
+5
-0
No files found.
dlls/setupapi/stubs.c
View file @
c2d47ced
...
...
@@ -158,7 +158,7 @@ void WINAPI SetupCloseLog(void)
/***********************************************************************
* SetupLogErrorW(SETUPAPI.@)
*/
BOOL
WINAPI
SetupLogErrorW
(
PCWSTR
MessageString
,
LogSeverity
Severity
)
BOOL
WINAPI
SetupLogErrorW
(
L
PCWSTR
MessageString
,
LogSeverity
Severity
)
{
FIXME
(
"(%s, %d) stub
\n
"
,
debugstr_w
(
MessageString
),
Severity
);
return
TRUE
;
...
...
include/setupapi.h
View file @
c2d47ced
...
...
@@ -751,6 +751,7 @@ LONG WINAPI QueryRegistryValue(HKEY, PCWSTR, PBYTE *, PDWORD, PDWORD);
DWORD
WINAPI
RetreiveFileSecurity
(
PCWSTR
,
PSECURITY_DESCRIPTOR
*
);
BOOL
WINAPI
SetupCloseFileQueue
(
HSPFILEQ
);
void
WINAPI
SetupCloseInfFile
(
HINF
hinf
);
void
WINAPI
SetupCloseLog
(
void
);
BOOL
WINAPI
SetupCommitFileQueueA
(
HWND
,
HSPFILEQ
,
PSP_FILE_CALLBACK_A
,
PVOID
);
BOOL
WINAPI
SetupCommitFileQueueW
(
HWND
,
HSPFILEQ
,
PSP_FILE_CALLBACK_W
,
PVOID
);
#define SetupCommitFileQueue WINELIB_NAME_AW(SetupCommitFileQueue)
...
...
@@ -892,6 +893,9 @@ BOOL WINAPI SetupInstallFromInfSectionW(HWND,HINF,PCWSTR,UINT,HKEY,PCWSTR,UI
BOOL
WINAPI
SetupIterateCabinetA
(
PCSTR
,
DWORD
,
PSP_FILE_CALLBACK_A
,
PVOID
);
BOOL
WINAPI
SetupIterateCabinetW
(
PCWSTR
,
DWORD
,
PSP_FILE_CALLBACK_W
,
PVOID
);
#define SetupIterateCabinet WINELIB_NAME_AW(SetupIterateCabinet)
BOOL
WINAPI
SetupLogErrorA
(
LPCSTR
,
LogSeverity
);
BOOL
WINAPI
SetupLogErrorW
(
LPCWSTR
,
LogSeverity
);
#define SetupLogError WINELIB_NAME_AW(SetupLogError)
BOOL
WINAPI
SetupOpenAppendInfFileA
(
PCSTR
,
HINF
,
UINT
*
);
BOOL
WINAPI
SetupOpenAppendInfFileW
(
PCWSTR
,
HINF
,
UINT
*
);
#define SetupOpenAppendInfFile WINELIB_NAME_AW(SetupOpenAppendInfFile)
...
...
@@ -899,6 +903,7 @@ HSPFILEQ WINAPI SetupOpenFileQueue(void);
HINF
WINAPI
SetupOpenInfFileA
(
PCSTR
name
,
PCSTR
pszclass
,
DWORD
style
,
UINT
*
error
);
HINF
WINAPI
SetupOpenInfFileW
(
PCWSTR
name
,
PCWSTR
pszclass
,
DWORD
style
,
UINT
*
error
);
#define SetupOpenInfFile WINELIB_NAME_AW(SetupOpenInfFile)
BOOL
WINAPI
SetupOpenLog
(
BOOL
);
HINF
WINAPI
SetupOpenMasterInf
(
VOID
);
INT
WINAPI
SetupPromptReboot
(
HSPFILEQ
,
HWND
,
BOOL
);
BOOL
WINAPI
SetupQueryInfFileInformationA
(
PSP_INF_INFORMATION
,
UINT
,
PSTR
,
DWORD
,
PDWORD
);
...
...
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