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
d42081f8
Commit
d42081f8
authored
Feb 10, 2005
by
Mike McCormack
Committed by
Alexandre Julliard
Feb 10, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update headers, add MsiGetUserInfoA stub implementation.
parent
ba7a43e2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
33 additions
and
2 deletions
+33
-2
msi.c
dlls/msi/msi.c
+13
-2
msi.h
include/msi.h
+20
-0
No files found.
dlls/msi/msi.c
View file @
d42081f8
...
...
@@ -1705,11 +1705,22 @@ UINT WINAPI MsiProvideQualifiedComponentExW(LPCWSTR szComponent,
return
ERROR_INDEX_ABSENT
;
}
U
INT
WINAPI
MsiGetUserInfoW
(
LPCWSTR
szProduct
,
LPWSTR
lpUserNameBuf
,
U
SERINFOSTATE
WINAPI
MsiGetUserInfoW
(
LPCWSTR
szProduct
,
LPWSTR
lpUserNameBuf
,
DWORD
*
pcchUserNameBuf
,
LPWSTR
lpOrgNameBuf
,
DWORD
*
pcchOrgNameBuf
,
LPWSTR
lpSerialBuf
,
DWORD
*
pcchSerialBuf
)
{
FIXME
(
"%s, %p %p %p %p %p %p
\n
"
,
debugstr_w
(
szProduct
),
lpUserNameBuf
,
FIXME
(
"%s %p %p %p %p %p %p
\n
"
,
debugstr_w
(
szProduct
),
lpUserNameBuf
,
pcchUserNameBuf
,
lpOrgNameBuf
,
pcchOrgNameBuf
,
lpSerialBuf
,
pcchSerialBuf
);
return
USERINFOSTATE_UNKNOWN
;
}
USERINFOSTATE
WINAPI
MsiGetUserInfoA
(
LPCSTR
szProduct
,
LPSTR
lpUserNameBuf
,
DWORD
*
pcchUserNameBuf
,
LPSTR
lpOrgNameBuf
,
DWORD
*
pcchOrgNameBuf
,
LPSTR
lpSerialBuf
,
DWORD
*
pcchSerialBuf
)
{
FIXME
(
"%s %p %p %p %p %p %p
\n
"
,
debugstr_a
(
szProduct
),
lpUserNameBuf
,
pcchUserNameBuf
,
lpOrgNameBuf
,
pcchOrgNameBuf
,
lpSerialBuf
,
pcchSerialBuf
);
...
...
include/msi.h
View file @
d42081f8
...
...
@@ -239,6 +239,10 @@ UINT WINAPI MsiConfigureProductA(LPCSTR, int, INSTALLSTATE);
UINT
WINAPI
MsiConfigureProductW
(
LPCWSTR
,
int
,
INSTALLSTATE
);
#define MsiConfigureProduct WINELIB_NAME_AW(MsiConfigureProduct);
UINT
WINAPI
MsiConfigureProductExA
(
LPCSTR
,
int
,
INSTALLSTATE
,
LPCSTR
);
UINT
WINAPI
MsiConfigureProductExW
(
LPCWSTR
,
int
,
INSTALLSTATE
,
LPCWSTR
);
#define MsiConfigureProductEx WINELIB_NAME_AW(MsiConfigureProductEx);
UINT
WINAPI
MsiGetProductCodeA
(
LPCSTR
,
LPSTR
);
UINT
WINAPI
MsiGetProductCodeW
(
LPCWSTR
,
LPWSTR
);
#define MsiGetProductCode WINELIB_NAME_AW(MsiGetProductCode)
...
...
@@ -287,6 +291,22 @@ UINT WINAPI MsiMessageBoxA(HWND, LPCSTR, LPCSTR, UINT, WORD, DWORD);
UINT
WINAPI
MsiMessageBoxW
(
HWND
,
LPCWSTR
,
LPCWSTR
,
UINT
,
WORD
,
DWORD
);
#define MsiMessageBox WINELIB_NAME_AW(MsiMessageBox)
UINT
WINAPI
MsiProvideQualifiedComponentExA
(
LPCSTR
,
LPCSTR
,
DWORD
,
LPSTR
,
DWORD
,
DWORD
,
LPSTR
,
DWORD
*
);
UINT
WINAPI
MsiProvideQualifiedComponentExW
(
LPCWSTR
,
LPCWSTR
,
DWORD
,
LPWSTR
,
DWORD
,
DWORD
,
LPWSTR
,
DWORD
*
);
#define MsiProvideQualifiedComponentEx WINELIB_NAME_AW(MsiProvideQualifiedComponentEx)
UINT
WINAPI
MsiProvideQualifiedComponentA
(
LPCSTR
,
LPCSTR
,
DWORD
,
LPSTR
,
DWORD
*
);
UINT
WINAPI
MsiProvideQualifiedComponentW
(
LPCWSTR
,
LPCWSTR
,
DWORD
,
LPWSTR
,
DWORD
*
);
#define MsiProvideQualifiedComponent WINELIB_NAME_AW(MsiProvideQualifiedComponent)
USERINFOSTATE
WINAPI
MsiGetUserInfoA
(
LPCSTR
,
LPSTR
,
DWORD
*
,
LPSTR
,
DWORD
*
,
LPSTR
,
DWORD
*
);
USERINFOSTATE
WINAPI
MsiGetUserInfoW
(
LPCWSTR
,
LPWSTR
,
DWORD
*
,
LPWSTR
,
DWORD
*
,
LPWSTR
,
DWORD
*
);
#define MsiGetUserInfo WINELIB_NAME_AW(MsiGetUserInfo)
UINT
WINAPI
MsiCollectUserInfoA
(
LPCSTR
);
UINT
WINAPI
MsiCollectUserInfoW
(
LPCWSTR
);
#define MsiCollectUserInfo WINELIB_NAME_AW(MsiCollectUserInfo)
/* Non Unicode */
UINT
WINAPI
MsiCloseHandle
(
MSIHANDLE
);
UINT
WINAPI
MsiCloseAllHandles
(
void
);
...
...
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