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
a60029f2
Commit
a60029f2
authored
Jun 11, 2013
by
Jacek Caban
Committed by
Alexandre Julliard
Jun 11, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
userenv.h: Added a few missing declarations.
parent
f5ec65ad
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
48 additions
and
0 deletions
+48
-0
userenv.h
include/userenv.h
+48
-0
No files found.
include/userenv.h
View file @
a60029f2
...
...
@@ -26,15 +26,62 @@
#define PT_ROAMING 0x00000002
#define PT_MANDATORY 0x00000004
typedef
enum
_GPO_LINK
{
GPLinkUnknown
=
0
,
GPLinkMachine
,
GPLinkSite
,
GPLinkDomain
,
GPLinkOrganizationalUnit
}
GPO_LINK
,
*
PGPO_LINK
;
typedef
struct
_GROUP_POLICY_OBJECTA
{
DWORD
dwOptions
;
DWORD
dwVersion
;
LPSTR
lpDSPath
;
LPSTR
lpFileSysPath
;
LPSTR
lpDisplayName
;
CHAR
szGPOName
[
50
];
GPO_LINK
GPOLink
;
LPARAM
lParam
;
struct
_GROUP_POLICY_OBJECTA
*
pNext
;
struct
_GROUP_POLICY_OBJECTA
*
pPrev
;
LPSTR
lpExtensions
;
LPARAM
lParam2
;
LPSTR
lpLink
;
}
GROUP_POLICY_OBJECTA
,
*
PGROUP_POLICY_OBJECTA
;
typedef
struct
_GROUP_POLICY_OBJECTW
{
DWORD
dwOptions
;
DWORD
dwVersion
;
LPWSTR
lpDSPath
;
LPWSTR
lpFileSysPath
;
LPWSTR
lpDisplayName
;
WCHAR
szGPOName
[
50
];
GPO_LINK
GPOLink
;
LPARAM
lParam
;
struct
_GROUP_POLICY_OBJECTW
*
pNext
;
struct
_GROUP_POLICY_OBJECTW
*
pPrev
;
LPWSTR
lpExtensions
;
LPARAM
lParam2
;
LPWSTR
lpLink
;
}
GROUP_POLICY_OBJECTW
,
*
PGROUP_POLICY_OBJECTW
;
DECL_WINELIB_TYPE_AW
(
GROUP_POLICY_OBJECT
)
DECL_WINELIB_TYPE_AW
(
PGROUP_POLICY_OBJECT
)
#ifdef __cplusplus
extern
"C"
{
#endif
BOOL
WINAPI
CreateEnvironmentBlock
(
LPVOID
*
,
HANDLE
,
BOOL
);
BOOL
WINAPI
DestroyEnvironmentBlock
(
LPVOID
);
HANDLE
WINAPI
EnterCriticalPolicySection
(
BOOL
);
BOOL
WINAPI
ExpandEnvironmentStringsForUserA
(
HANDLE
,
LPCSTR
,
LPSTR
,
DWORD
);
BOOL
WINAPI
ExpandEnvironmentStringsForUserW
(
HANDLE
,
LPCWSTR
,
LPWSTR
,
DWORD
);
#define ExpandEnvironmentStringsForUser WINELIB_NAME_AW(ExpandEnvironmentStringsForUser)
DWORD
WINAPI
GetAppliedGPOListW
(
DWORD
,
LPCWSTR
,
PSID
,
GUID
*
,
PGROUP_POLICY_OBJECTW
*
);
DWORD
WINAPI
GetAppliedGPOListA
(
DWORD
,
LPCSTR
,
PSID
,
GUID
*
,
PGROUP_POLICY_OBJECTA
*
);
#define GetAppliedGPOList WINELIB_NAME_AW(GetAppliedGPOList)
BOOL
WINAPI
GetUserProfileDirectoryA
(
HANDLE
,
LPSTR
,
LPDWORD
);
BOOL
WINAPI
GetUserProfileDirectoryW
(
HANDLE
,
LPWSTR
,
LPDWORD
);
#define GetUserProfileDirectory WINELIB_NAME_AW(GetUserProfileDirectory)
...
...
@@ -45,6 +92,7 @@ BOOL WINAPI GetAllUsersProfileDirectoryA(LPSTR,LPDWORD);
BOOL
WINAPI
GetAllUsersProfileDirectoryW
(
LPWSTR
,
LPDWORD
);
#define GetAllUsersProfileDirectory WINELIB_NAME_AW(GetAllUsersProfileDirectory)
BOOL
WINAPI
GetProfileType
(
DWORD
*
);
BOOL
WINAPI
LeaveCriticalPolicySection
(
HANDLE
);
BOOL
WINAPI
LoadUserProfileA
(
HANDLE
,
LPPROFILEINFOA
);
BOOL
WINAPI
LoadUserProfileW
(
HANDLE
,
LPPROFILEINFOW
);
#define LoadUserProfile WINELIB_NAME_AW(LoadUserProfile)
...
...
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