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
fabcd278
Commit
fabcd278
authored
Feb 17, 2004
by
Christian Costa
Committed by
Alexandre Julliard
Feb 17, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added some stubs.
parent
0fd8e513
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
25 additions
and
2 deletions
+25
-2
msi.c
dlls/msi/msi.c
+6
-0
msi.spec
dlls/msi/msi.spec
+1
-1
setupapi.spec
dlls/setupapi/setupapi.spec
+1
-1
stubs.c
dlls/setupapi/stubs.c
+11
-0
setupapi.h
include/setupapi.h
+6
-0
No files found.
dlls/msi/msi.c
View file @
fabcd278
...
...
@@ -834,3 +834,9 @@ BOOL WINAPI MSI_DllCanUnloadNow(void)
{
return
FALSE
;
}
HRESULT
WINAPI
MSI_DllRegisterServer
(
void
)
{
FIXME
(
"Stub!
\n
"
);
return
S_OK
;
}
dlls/msi/msi.spec
View file @
fabcd278
1 stdcall DllCanUnloadNow() MSI_DllCanUnloadNow
2 stub DllGetClassObject
3 st
ub
DllRegisterServer
3 st
dcall -private DllRegisterServer() MSI_
DllRegisterServer
4 stub DllUnregisterServer
5 stdcall MsiAdvertiseProductA(str str str long)
6 stdcall MsiAdvertiseProductW(wstr wstr wstr long)
...
...
dlls/setupapi/setupapi.spec
View file @
fabcd278
...
...
@@ -195,7 +195,7 @@
@ stdcall SetupGetFileQueueFlags(long ptr)
@ stub SetupGetInfFileListA
@ stub SetupGetInfFileListW
@ st
ub SetupGetInfInformationA
@ st
dcall SetupGetInfInformationA(ptr long ptr long ptr)
@ stub SetupGetInfInformationW
@ stdcall SetupGetIntField(ptr long ptr)
@ stdcall SetupGetLineByIndexA(long str long ptr)
...
...
dlls/setupapi/stubs.c
View file @
fabcd278
...
...
@@ -195,3 +195,14 @@ void WINAPI InstallHinfSection(HWND hwnd, HINSTANCE handle, LPCSTR cmdline, INT
{
FIXME
(
"stub, hwnd %p, handle %p, cmdline %s
\n
"
,
hwnd
,
handle
,
debugstr_a
(
cmdline
));
}
/***********************************************************************
* SetupGetInfInformationA (SETUPAPI.@)
*/
BOOL
WINAPI
SetupGetInfInformationA
(
LPCVOID
InfSpec
,
DWORD
SearchControl
,
PSP_INF_INFORMATION
ReturnBuffer
,
DWORD
ReturnBufferSize
,
PDWORD
RequiredSize
)
{
FIXME
(
"(%p, %d, %p, %d, %p) Stub!
\n
"
);
return
TRUE
;
}
include/setupapi.h
View file @
fabcd278
...
...
@@ -219,6 +219,12 @@ typedef struct _CABINET_INFO_W {
DECL_WINELIB_SETUPAPI_TYPE_AW
(
CABINET_INFO
);
DECL_WINELIB_SETUPAPI_TYPE_AW
(
PCABINET_INFO
);
typedef
struct
_SP_INF_INFORMATION
{
DWORD
InfStyle
;
DWORD
InfCount
;
BYTE
VersionData
[
ANYSIZE_ARRAY
];
}
SP_INF_INFORMATION
,
*
PSP_INF_INFORMATION
;
#define INF_STYLE_NONE 0x00
#define INF_STYLE_OLDNT 0x01
#define INF_STYLE_WIN4 0x02
...
...
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