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
70566c03
Commit
70566c03
authored
Jan 21, 2006
by
James Hawkins
Committed by
Alexandre Julliard
Jan 21, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
advpack: Add a stub for SetPerUserSecValues.
parent
1142a1f2
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
36 additions
and
1 deletion
+36
-1
advpack.c
dlls/advpack/advpack.c
+23
-0
advpack.spec
dlls/advpack/advpack.spec
+1
-1
advpub.h
include/advpub.h
+12
-0
No files found.
dlls/advpack/advpack.c
View file @
70566c03
...
...
@@ -414,6 +414,29 @@ HRESULT WINAPI ExecuteCab( HWND hwnd, PCABINFO pCab, LPVOID pReserved )
}
/***********************************************************************
* SetPerUserSecValues (ADVPACK.@)
*
* Prepares the per-user stub values under IsInstalled\{GUID} that
* control the per-user installation.
*
* PARAMS
* pPerUser [I] Per-user stub values.
*
* RETURNS
* Success: S_OK.
* Failure: E_FAIL.
*
* BUGS
* Unimplemented.
*/
HRESULT
WINAPI
SetPerUserSecValues
(
PPERUSERSECTION
pPerUser
)
{
FIXME
(
"(%p) stub
\n
"
,
pPerUser
);
return
E_FAIL
;
}
/***********************************************************************
* TranslateInfString (ADVPACK.@)
*
* Translates the value of a specified key in an inf file into the
...
...
dlls/advpack/advpack.spec
View file @
70566c03
...
...
@@ -25,7 +25,7 @@
@ stdcall RegSaveRestoreOnINF(ptr str str str long long long)
@ stdcall RegisterOCX(ptr ptr str long)
@ stdcall RunSetupCommand(long str str str str ptr long ptr)
@ st
ub SetPerUserSecValues
@ st
dcall SetPerUserSecValues(ptr)
@ stdcall TranslateInfString(str str str str ptr long ptr ptr)
@ stdcall TranslateInfStringEx(long str str str str long ptr ptr)
@ stdcall UserInstStubWrapper(long long str long)
...
...
include/advpub.h
View file @
70566c03
...
...
@@ -30,6 +30,17 @@ typedef struct _CabInfo {
DWORD
dwFlags
;
}
CABINFO
,
*
PCABINFO
;
typedef
struct
_PERUSERSECTION
{
char
szGUID
[
39
/*MAX_GUID_STRING_LEN*/
+
20
];
char
szDispName
[
128
];
char
szLocale
[
10
];
char
szStub
[
MAX_PATH
*
4
];
char
szVersion
[
32
];
char
szCompID
[
128
];
DWORD
dwIsInstalled
;
BOOL
bRollback
;
}
PERUSERSECTION
,
*
PPERUSERSECTION
;
typedef
struct
_StrEntry
{
LPSTR
pszName
;
LPSTR
pszValue
;
...
...
@@ -137,6 +148,7 @@ HRESULT WINAPI RegSaveRestoreOnINF(HWND hWnd, PCSTR pszTitle, PCSTR pszINF,
HRESULT
WINAPI
RunSetupCommand
(
HWND
hWnd
,
LPCSTR
szCmdName
,
LPCSTR
szInfSection
,
LPCSTR
szDir
,
LPCSTR
lpszTitle
,
HANDLE
*
phEXE
,
DWORD
dwFlags
,
LPVOID
pvReserved
);
HRESULT
WINAPI
SetPerUserSecValues
(
PPERUSERSECTION
pPerUser
);
HRESULT
WINAPI
TranslateInfString
(
PCSTR
pszInfFilename
,
PCSTR
pszInstallSection
,
PCSTR
pszTranslateSection
,
PCSTR
pszTranslateKey
,
PSTR
pszBuffer
,
DWORD
dwBufferSize
,
PDWORD
pdwRequiredSize
,
PVOID
pvReserved
);
...
...
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