diff options
author | Corinna Vinschen <corinna@vinschen.de> | 2000-08-08 20:00:35 +0000 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2000-08-08 20:00:35 +0000 |
commit | 5678e1954a07ea5be2370b6e9c9a80f9d9b21399 (patch) | |
tree | 0802512a71dffce444b910d3ea309230cdfb1c5b | |
parent | befe0fb3e142e287f79e0589c2e50996d9f10944 (diff) | |
download | newlib-5678e1954a07ea5be2370b6e9c9a80f9d9b21399.zip newlib-5678e1954a07ea5be2370b6e9c9a80f9d9b21399.tar.gz newlib-5678e1954a07ea5be2370b6e9c9a80f9d9b21399.tar.bz2 |
* include/userenv.h: New header file.
* lib/userenv.def: New stub for userenv.dll.
-rw-r--r-- | winsup/w32api/ChangeLog | 5 | ||||
-rw-r--r-- | winsup/w32api/include/userenv.h | 53 | ||||
-rw-r--r-- | winsup/w32api/lib/userenv.def | 11 |
3 files changed, 69 insertions, 0 deletions
diff --git a/winsup/w32api/ChangeLog b/winsup/w32api/ChangeLog index bd01cfc..86a135d 100644 --- a/winsup/w32api/ChangeLog +++ b/winsup/w32api/ChangeLog @@ -1,3 +1,8 @@ +Tue Aug 8 21:29:00 2000 Corinna Vinschen <corinna@vinschen.de> + + * include/userenv.h: New header file. + * lib/userenv.def: New stub for userenv.dll. + Tue Aug 8 10:25:14 2000 Christopher Faylor <cgf@cygnus.com> * include/winuser.h: Correct PCWPSTRUCT typo. diff --git a/winsup/w32api/include/userenv.h b/winsup/w32api/include/userenv.h new file mode 100644 index 0000000..a073b79 --- /dev/null +++ b/winsup/w32api/include/userenv.h @@ -0,0 +1,53 @@ +#ifndef _USERENV_H +#define _USERENV_H +#ifdef __cplusplus +extern "C" { +#endif +#define PI_NOUI (1) +#define PI_APPLYPOLICY (2) +typedef struct _PROFILEINFOA { + DWORD dwSize; + DWORD dwFlags; + LPSTR lpUserName; + LPSTR lpProfilePath; + LPSTR lpDefaultPath; + LPSTR lpServerName; + LPSTR lpPolicyPath; + HANDLE hProfile; +} PROFILEINFOA, *LPPROFILEINFOA; +typedef struct _PROFILEINFOW { + DWORD dwSize; + DWORD dwFlags; + LPWSTR lpUserName; + LPWSTR lpProfilePath; + LPWSTR lpDefaultPath; + LPWSTR lpServerName; + LPWSTR lpPolicyPath; + HANDLE hProfile; +} PROFILEINFOW, *LPPROFILEINFOW; +BOOL WINAPI LoadUserProfileA(HANDLE,LPPROFILEINFOA); +BOOL WINAPI LoadUserProfileW(HANDLE,LPPROFILEINFOW); +BOOL WINAPI UnloadUserProfile(HANDLE,HANDLE); +BOOL WINAPI GetProfilesDirectoryA(LPSTR,LPDWORD); +BOOL WINAPI GetProfilesDirectoryW(LPWSTR,LPDWORD); +BOOL WINAPI GetUserProfileDirectoryA(HANDLE,LPSTR,LPDWORD); +BOOL WINAPI GetUserProfileDirectoryW(HANDLE,LPWSTR,LPDWORD); +BOOL WINAPI CreateEnvironmentBlock(LPVOID*,HANDLE,BOOL); +BOOL WINAPI DestroyEnvironmentBlock(LPVOID); +#ifdef UNICODE +typedef PROFILEINFOW PROFILEINFO; +typedef LPPROFILEINFOW LPPROFILEINFO; +#define LoadUserProfile LoadUserProfileW +#define GetProfilesDirectory GetProfilesDirectoryW +#define GetUserProfileDirectory GetUserProfileDirectoryW +#else +typedef PROFILEINFOA PROFILEINFO; +typedef LPPROFILEINFOA LPPROFILEINFO; +#define LoadUserProfile LoadUserProfileA +#define GetProfilesDirectory GetProfilesDirectoryA +#define GetUserProfileDirectory GetUserProfileDirectoryA +#endif +#ifdef __cplusplus +} +#endif +#endif /* _USERENV_H */ diff --git a/winsup/w32api/lib/userenv.def b/winsup/w32api/lib/userenv.def new file mode 100644 index 0000000..b74cb92 --- /dev/null +++ b/winsup/w32api/lib/userenv.def @@ -0,0 +1,11 @@ +LIBRARY USERENV.dll +EXPORTS +LoadUserProfileA@8 +LoadUserProfileW@8 +UnloadUserProfile@8 +GetProfilesDirectoryA@8 +GetProfilesDirectoryW@8 +GetUserProfileDirectoryA@12 +GetUserProfileDirectoryW@12 +CreateEnvironmentBlock@12 +DestroyEnvironmentBlock@4 |