| /* |
| * Copyright (C) 2007 Francois Gouget |
| * |
| * This library is free software; you can redistribute it and/or |
| * modify it under the terms of the GNU Lesser General Public |
| * License as published by the Free Software Foundation; either |
| * version 2.1 of the License, or (at your option) any later version. |
| * |
| * This library is distributed in the hope that it will be useful, |
| * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| * Lesser General Public License for more details. |
| * |
| * You should have received a copy of the GNU Lesser General Public |
| * License along with this library; if not, write to the Free Software |
| * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA |
| */ |
| |
| #ifndef __WINE_USERENV_H |
| #define __WINE_USERENV_H |
| |
| /* FIXME: #include <wbemcli.h> */ |
| #include <profinfo.h> |
| |
| #define PT_TEMPORARY 0x00000001 |
| #define PT_ROAMING 0x00000002 |
| #define PT_MANDATORY 0x00000004 |
| |
| #ifdef __cplusplus |
| extern "C" { |
| #endif |
| |
| BOOL WINAPI CreateEnvironmentBlock(LPVOID*,HANDLE,BOOL); |
| BOOL WINAPI ExpandEnvironmentStringsForUserA(HANDLE,LPCSTR,LPSTR,DWORD); |
| BOOL WINAPI ExpandEnvironmentStringsForUserW(HANDLE,LPCWSTR,LPWSTR,DWORD); |
| #define ExpandEnvironmentStringsForUser WINELIB_NAME_AW(ExpandEnvironmentStringsForUser) |
| BOOL WINAPI GetUserProfileDirectoryA(HANDLE,LPSTR,LPDWORD); |
| BOOL WINAPI GetUserProfileDirectoryW(HANDLE,LPWSTR,LPDWORD); |
| #define GetUserProfileDirectory WINELIB_NAME_AW(GetUserProfileDirectory) |
| BOOL WINAPI GetProfilesDirectoryA(LPSTR,LPDWORD); |
| BOOL WINAPI GetProfilesDirectoryW(LPWSTR,LPDWORD); |
| #define GetProfilesDirectory WINELIB_NAME_AW(GetProfilesDirectory) |
| BOOL WINAPI GetProfileType(DWORD*); |
| BOOL WINAPI LoadUserProfileA(HANDLE,LPPROFILEINFOA); |
| BOOL WINAPI LoadUserProfileW(HANDLE,LPPROFILEINFOW); |
| #define LoadUserProfile WINELIB_NAME_AW(LoadUserProfile) |
| BOOL WINAPI RegisterGPNotification(HANDLE,BOOL); |
| BOOL WINAPI UnloadUserProfile(HANDLE,HANDLE); |
| BOOL WINAPI UnregisterGPNotification(HANDLE); |
| |
| #ifdef __cplusplus |
| } |
| #endif |
| |
| #endif /* __WINE_USERENV_H */ |