mirror of https://github.com/lianthony/NT4.0
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.
44 lines
1008 B
44 lines
1008 B
//*************************************************************
|
|
//
|
|
// Profile.h - Header file for profile.c
|
|
//
|
|
// Microsoft Confidential
|
|
// Copyright (c) Microsoft Corporation 1996
|
|
// All rights reserved
|
|
//
|
|
//*************************************************************
|
|
|
|
//
|
|
// Flags
|
|
//
|
|
|
|
#define USERINFO_FLAG_DIRTY 1
|
|
#define USERINFO_FLAG_CENTRAL_AVAILABLE 2
|
|
|
|
|
|
//
|
|
// Profile types
|
|
//
|
|
|
|
#define USERINFO_LOCAL 0
|
|
#define USERINFO_FLOATING 1
|
|
#define USERINFO_MANDATORY 2
|
|
#define USERINFO_LOCAL_SLOW_LINK 3
|
|
|
|
|
|
typedef struct _USERINFO {
|
|
DWORD dwFlags;
|
|
LPTSTR lpSid;
|
|
LPTSTR lpProfile;
|
|
DWORD dwProfileType;
|
|
} USERINFO, *LPUSERINFO;
|
|
|
|
typedef struct _UPCOPYINFO {
|
|
DWORD dwFlags;
|
|
PSID pSid;
|
|
LPUSERINFO lpUserInfo;
|
|
} UPCOPYINFO, *LPUPCOPYINFO;
|
|
|
|
|
|
HPROPSHEETPAGE CreateProfilePage (HINSTANCE hInst);
|
|
BOOL APIENTRY UserProfileDlgProc (HWND hDlg, UINT uMsg, WPARAM wParam, LPARAM lParam);
|