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
11fced7b
Commit
11fced7b
authored
Dec 15, 2005
by
James Hawkins
Committed by
Alexandre Julliard
Dec 15, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
setupapi: Added stubs for SetupGetInfInformation and
SetupQueryInfFileInformation.
parent
50bbfb3c
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
45 additions
and
3 deletions
+45
-3
setupapi.spec
dlls/setupapi/setupapi.spec
+3
-3
stubs.c
dlls/setupapi/stubs.c
+36
-0
setupapi.h
include/setupapi.h
+6
-0
No files found.
dlls/setupapi/setupapi.spec
View file @
11fced7b
...
...
@@ -401,7 +401,7 @@
@ stub SetupGetInfFileListA
@ stub SetupGetInfFileListW
@ stdcall SetupGetInfInformationA(ptr long ptr long ptr)
@ st
ub SetupGetInfInformationW
@ st
dcall SetupGetInfInformationW(ptr long ptr long ptr)
@ stub SetupGetInfSections
@ stdcall SetupGetIntField(ptr long ptr)
@ stdcall SetupGetLineByIndexA(long str long ptr)
...
...
@@ -457,8 +457,8 @@
@ stub SetupQueryDrivesInDiskSpaceListW
@ stub SetupQueryFileLogA
@ stub SetupQueryFileLogW
@ st
ub SetupQueryInfFileInformationA
@ st
ub SetupQueryInfFileInformationW
@ st
dcall SetupQueryInfFileInformationA(ptr long str long ptr)
@ st
dcall SetupQueryInfFileInformationW(ptr long wstr long ptr)
@ stub SetupQueryInfOriginalFileInformationA
@ stub SetupQueryInfOriginalFileInformationW
@ stub SetupQueryInfVersionInformationA
...
...
dlls/setupapi/stubs.c
View file @
11fced7b
...
...
@@ -163,6 +163,42 @@ BOOL WINAPI SetupGetInfInformationA( LPCVOID InfSpec, DWORD SearchControl,
}
/***********************************************************************
* SetupGetInfInformationW (SETUPAPI.@)
*/
BOOL
WINAPI
SetupGetInfInformationW
(
LPCVOID
InfSpec
,
DWORD
SearchControl
,
PSP_INF_INFORMATION
ReturnBuffer
,
DWORD
ReturnBufferSize
,
PDWORD
RequiredSize
)
{
FIXME
(
"(%p, %ld, %p, %ld, %p) Stub!
\n
"
,
InfSpec
,
SearchControl
,
ReturnBuffer
,
ReturnBufferSize
,
RequiredSize
);
return
TRUE
;
}
/***********************************************************************
* SetupQueryInfFileInformationA (SETUPAPI.@)
*/
BOOL
WINAPI
SetupQueryInfFileInformationA
(
PSP_INF_INFORMATION
InfInformation
,
UINT
InfIndex
,
PSTR
ReturnBuffer
,
DWORD
ReturnBufferSize
,
PDWORD
RequiredSize
)
{
FIXME
(
"(%p, %u, %p, %ld, %p) Stub!
\n
"
,
InfInformation
,
InfIndex
,
ReturnBuffer
,
ReturnBufferSize
,
RequiredSize
);
return
TRUE
;
}
/***********************************************************************
* SetupQueryInfFileInformationW (SETUPAPI.@)
*/
BOOL
WINAPI
SetupQueryInfFileInformationW
(
PSP_INF_INFORMATION
InfInformation
,
UINT
InfIndex
,
PWSTR
ReturnBuffer
,
DWORD
ReturnBufferSize
,
PDWORD
RequiredSize
)
{
FIXME
(
"(%p, %u, %p, %ld, %p) Stub!
\n
"
,
InfInformation
,
InfIndex
,
ReturnBuffer
,
ReturnBufferSize
,
RequiredSize
);
return
TRUE
;
}
/***********************************************************************
* SetupInitializeFileLogW(SETUPAPI.@)
*/
HANDLE
WINAPI
SetupInitializeFileLogW
(
LPWSTR
LogFileName
,
DWORD
Flags
)
...
...
include/setupapi.h
View file @
11fced7b
...
...
@@ -787,6 +787,9 @@ BOOL WINAPI SetupGetBinaryField( PINFCONTEXT context, DWORD index, BYTE *buf
DWORD
WINAPI
SetupGetFieldCount
(
PINFCONTEXT
context
);
BOOL
WINAPI
SetupGetFileQueueCount
(
HSPFILEQ
,
UINT
,
PUINT
);
BOOL
WINAPI
SetupGetFileQueueFlags
(
HSPFILEQ
,
PDWORD
);
BOOL
WINAPI
SetupGetInfInformationA
(
LPCVOID
,
DWORD
,
PSP_INF_INFORMATION
,
DWORD
,
PDWORD
);
BOOL
WINAPI
SetupGetInfInformationW
(
LPCVOID
,
DWORD
,
PSP_INF_INFORMATION
,
DWORD
,
PDWORD
);
#define SetupGetInfInformation WINELIB_NAME_AW(SetupGetInfInformation)
BOOL
WINAPI
SetupGetIntField
(
PINFCONTEXT
context
,
DWORD
index
,
PINT
result
);
BOOL
WINAPI
SetupGetLineByIndexA
(
HINF
,
PCSTR
,
DWORD
,
INFCONTEXT
*
);
BOOL
WINAPI
SetupGetLineByIndexW
(
HINF
,
PCWSTR
,
DWORD
,
INFCONTEXT
*
);
...
...
@@ -824,6 +827,9 @@ HINF WINAPI SetupOpenInfFileA( PCSTR name, PCSTR pszclass, DWORD style, UINT
HINF
WINAPI
SetupOpenInfFileW
(
PCWSTR
name
,
PCWSTR
pszclass
,
DWORD
style
,
UINT
*
error
);
#define SetupOpenInfFile WINELIB_NAME_AW(SetupOpenInfFile)
HINF
WINAPI
SetupOpenMasterInf
(
VOID
);
BOOL
WINAPI
SetupQueryInfFileInformationA
(
PSP_INF_INFORMATION
,
UINT
,
PSTR
,
DWORD
,
PDWORD
);
BOOL
WINAPI
SetupQueryInfFileInformationW
(
PSP_INF_INFORMATION
,
UINT
,
PWSTR
,
DWORD
,
PDWORD
);
#define SetupQueryInfFileInformation WINELIB_NAME_AW(SetupQueryInFileInformation)
BOOL
WINAPI
SetupQueueCopyA
(
HSPFILEQ
,
PCSTR
,
PCSTR
,
PCSTR
,
PCSTR
,
PCSTR
,
PCSTR
,
PCSTR
,
DWORD
);
BOOL
WINAPI
SetupQueueCopyW
(
HSPFILEQ
,
PCWSTR
,
PCWSTR
,
PCWSTR
,
PCWSTR
,
PCWSTR
,
PCWSTR
,
PCWSTR
,
DWORD
);
#define SetupQueueCopy WINELIB_NAME_AW(SetupQueueCopy)
...
...
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