Leaked source code of windows server 2003
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
//=============================================================================
// profinfo.h - Header file for profile info structure.
//
// Copyright (c) Microsoft Corporation 2000
// All rights reserved
//
//=============================================================================
#ifndef _INC_PROFINFO
#define _INC_PROFINFO
#ifdef __midl
#define FAR
#define MIDL_STRING [string, unique]
#else
#define MIDL_STRING
#endif // __midl
typedef struct _PROFILEINFOA { DWORD dwSize; // Set to sizeof(PROFILEINFO) before calling
DWORD dwFlags; // See PI_ flags defined in userenv.h
MIDL_STRING LPSTR lpUserName; // User name (required)
MIDL_STRING LPSTR lpProfilePath; // Roaming profile path (optional, can be NULL)
MIDL_STRING LPSTR lpDefaultPath; // Default user profile path (optional, can be NULL)
MIDL_STRING LPSTR lpServerName; // Validating domain controller name in netbios format (optional, can be NULL but group NT4 style policy won't be applied)
MIDL_STRING LPSTR lpPolicyPath; // Path to the NT4 style policy file (optional, can be NULL)
#ifdef __midl
ULONG_PTR hProfile; // Filled in by the function. Registry key handle open to the root.
#else
HANDLE hProfile; // Filled in by the function. Registry key handle open to the root.
#endif
} PROFILEINFOA, FAR * LPPROFILEINFOA; typedef struct _PROFILEINFOW { DWORD dwSize; // Set to sizeof(PROFILEINFO) before calling
DWORD dwFlags; // See PI_ flags defined in userenv.h
MIDL_STRING LPWSTR lpUserName; // User name (required)
MIDL_STRING LPWSTR lpProfilePath; // Roaming profile path (optional, can be NULL)
MIDL_STRING LPWSTR lpDefaultPath; // Default user profile path (optional, can be NULL)
MIDL_STRING LPWSTR lpServerName; // Validating domain controller name in netbios format (optional, can be NULL but group NT4 style policy won't be applied)
MIDL_STRING LPWSTR lpPolicyPath; // Path to the NT4 style policy file (optional, can be NULL)
#ifdef __midl
ULONG_PTR hProfile; // Filled in by the function. Registry key handle open to the root.
#else
HANDLE hProfile; // Filled in by the function. Registry key handle open to the root.
#endif
} PROFILEINFOW, FAR * LPPROFILEINFOW; #ifdef UNICODE
typedef PROFILEINFOW PROFILEINFO; typedef LPPROFILEINFOW LPPROFILEINFO; #else
typedef PROFILEINFOA PROFILEINFO; typedef LPPROFILEINFOA LPPROFILEINFO; #endif // UNICODE
#endif // _INC_PROFINFO
|