#ifndef _USRMGR_H #define _USRMGR_H #include #define WIN32_NO_STATUS #include #include #include #include #include #include #include #include #include #include "resource.h" typedef struct _APPLET { int idIcon; int idName; int idDescription; APPLET_PROC AppletProc; } APPLET, *PAPPLET; extern HINSTANCE hApplet; INT_PTR CALLBACK UsersPageProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam); INT_PTR CALLBACK GroupsPageProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam); INT_PTR CALLBACK ExtraPageProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam); /* groupprops.c */ BOOL GroupProperties(HWND hwndDlg); /* misc.c */ VOID DebugPrintf(LPTSTR szFormat, ...); BOOL CheckAccountName(HWND hwndDlg, INT nIdDlgItem, LPTSTR lpAccountName); /* userprops.c */ BOOL UserProperties(HWND hwndDlg); #endif /* _USRMGR_H */