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
e3a4f9b4
Commit
e3a4f9b4
authored
Jul 11, 2005
by
Stefan Leichter
Committed by
Alexandre Julliard
Jul 11, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added stubs for ExecuteCab and TranslateInfString.
parent
c6d24d23
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
39 additions
and
2 deletions
+39
-2
advpack.c
dlls/advpack/advpack.c
+29
-0
advpack.spec
dlls/advpack/advpack.spec
+2
-2
advpub.h
include/advpub.h
+8
-0
No files found.
dlls/advpack/advpack.c
View file @
e3a4f9b4
...
...
@@ -370,3 +370,32 @@ void WINAPI DelNodeRunDLL32( HWND hWnd, HINSTANCE hInst, LPCSTR cmdline, INT sho
{
FIXME
(
"(%s): stub
\n
"
,
debugstr_a
(
cmdline
));
}
/***********************************************************************
* ExecuteCab (ADVPACK.@)
*
* BUGS
* Unimplemented
*/
HRESULT
WINAPI
ExecuteCab
(
HWND
hwnd
,
PCABINFO
pCab
,
LPVOID
pReserved
)
{
FIXME
(
"(%p %p %p): stub
\n
"
,
hwnd
,
pCab
,
pReserved
);
return
E_FAIL
;
}
/***********************************************************************
* TranslateInfString (ADVPACK.@)
*
* BUGS
* Unimplemented
*/
HRESULT
WINAPI
TranslateInfString
(
PCSTR
pszInfFilename
,
PCSTR
pszInstallSection
,
PCSTR
pszTranslateSection
,
PCSTR
pszTranslateKey
,
PSTR
pszBuffer
,
DWORD
dwBufferSize
,
PDWORD
pdwRequiredSize
,
PVOID
pvReserved
)
{
FIXME
(
"(%s %s %s %s %p %ld %p %p): stub
\n
"
,
debugstr_a
(
pszInfFilename
),
debugstr_a
(
pszInstallSection
),
debugstr_a
(
pszTranslateSection
),
debugstr_a
(
pszTranslateKey
),
pszBuffer
,
dwBufferSize
,
pdwRequiredSize
,
pvReserved
);
return
E_FAIL
;
}
dlls/advpack/advpack.spec
View file @
e3a4f9b4
...
...
@@ -5,7 +5,7 @@
@ stdcall DelNodeRunDLL32(ptr ptr str long)
@ stdcall DllMain(long long ptr)
@ stdcall DoInfInstall(ptr)
@ st
ub ExecuteCab
@ st
dcall ExecuteCab(ptr ptr ptr)
@ stub ExtractFiles
@ stub FileSaveMarkNotExist
@ stub FileSaveRestore
...
...
@@ -26,7 +26,7 @@
@ stdcall RegisterOCX(ptr ptr str long)
@ stdcall RunSetupCommand(long str str str str ptr long ptr)
@ stub SetPerUserSecValues
@ st
ub TranslateInfString
@ st
dcall TranslateInfString(str str str str ptr long ptr ptr)
@ stub TranslateInfStringEx
@ stub UserInstStubWrapper
@ stub UserUnInstStubWrapper
include/advpub.h
View file @
e3a4f9b4
...
...
@@ -22,6 +22,14 @@
extern
"C"
{
#endif
typedef
struct
_CabInfo
{
PSTR
pszCab
;
PSTR
pszInf
;
PSTR
pszSection
;
char
szSrcPath
[
MAX_PATH
];
DWORD
dwFlags
;
}
CABINFO
,
*
PCABINFO
;
typedef
struct
_StrEntry
{
LPSTR
pszName
;
LPSTR
pszValue
;
...
...
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