#ifndef _USRMGR_H #define _USRMGR_H #include #include WINE_DEFAULT_DEBUG_CHANNEL(usrmgr); #ifdef UNICODE #define dbgstrx(x) wine_dbgstr_w(x) #else #define dbgstrx(x) (const char*)(x) #endif #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); LPTSTR GetDlgItemTextAlloc(HWND hwndDlg, INT nDlgItem); LPTSTR GetComboBoxLBTextAlloc(HWND hwndDlg, INT nDlgItem, INT nIndex); /* groupprops.c */ BOOL GroupProperties(HWND hwndDlg); /* misc.c */ BOOL CheckAccountName(HWND hwndDlg, INT nIdDlgItem, LPTSTR lpAccountName); /* userprops.c */ BOOL UserProperties(HWND hwndDlg); #endif /* _USRMGR_H */