usrmgr.h (f07741e6) usrmgr.h (8532f187)
1#ifndef _USRMGR_H
2#define _USRMGR_H
3
4#include <stdarg.h>
5#include <wine/debug.h>
6
7WINE_DEFAULT_DEBUG_CHANNEL(usrmgr);
8

--- 21 unchanged lines hidden (view full) ---

30 int idIcon;
31 int idName;
32 int idDescription;
33 APPLET_PROC AppletProc;
34} APPLET, *PAPPLET;
35
36extern HINSTANCE hApplet;
37
1#ifndef _USRMGR_H
2#define _USRMGR_H
3
4#include <stdarg.h>
5#include <wine/debug.h>
6
7WINE_DEFAULT_DEBUG_CHANNEL(usrmgr);
8

--- 21 unchanged lines hidden (view full) ---

30 int idIcon;
31 int idName;
32 int idDescription;
33 APPLET_PROC AppletProc;
34} APPLET, *PAPPLET;
35
36extern HINSTANCE hApplet;
37
38
39INT_PTR CALLBACK UsersPageProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam);
40INT_PTR CALLBACK GroupsPageProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam);
41INT_PTR CALLBACK ExtraPageProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam);
42
38INT_PTR CALLBACK UsersPageProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam);
39INT_PTR CALLBACK GroupsPageProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam);
40INT_PTR CALLBACK ExtraPageProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam);
41
42LPTSTR GetDlgItemTextAlloc(HWND hwndDlg, INT nDlgItem);
43LPTSTR GetComboBoxLBTextAlloc(HWND hwndDlg, INT nDlgItem, INT nIndex);
44
43/* groupprops.c */
44BOOL
45GroupProperties(HWND hwndDlg);
46
47/* misc.c */
48BOOL
49CheckAccountName(HWND hwndDlg,
50 INT nIdDlgItem,
51 LPTSTR lpAccountName);
52
53/* userprops.c */
54BOOL
55UserProperties(HWND hwndDlg);
56
57#endif /* _USRMGR_H */
45/* groupprops.c */
46BOOL
47GroupProperties(HWND hwndDlg);
48
49/* misc.c */
50BOOL
51CheckAccountName(HWND hwndDlg,
52 INT nIdDlgItem,
53 LPTSTR lpAccountName);
54
55/* userprops.c */
56BOOL
57UserProperties(HWND hwndDlg);
58
59#endif /* _USRMGR_H */