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.
21 lines
858 B
21 lines
858 B
// include semi-private header
|
|
#include <shlobj.h>
|
|
#include <shlobjp.h>
|
|
|
|
/****************************************************
|
|
Option flags (dwFlags)
|
|
----------------------
|
|
****************************************************/
|
|
#define SHTDN_NOHELP 0x000000001
|
|
#define SHTDN_NOPALETTECHANGE 0x000000002
|
|
#define SHTDN_NOBRANDINGBITMAP 0x000000004
|
|
|
|
// Private function prototypes
|
|
DWORD ShutdownDialog(HWND hwndParent, DWORD dwItems, DWORD dwItemSelect,
|
|
LPCTSTR szUsername, DWORD dwFlags, HANDLE hWlx,
|
|
PWLX_DIALOG_BOX_PARAM pfnWlxDialogBoxParam);
|
|
|
|
INT_PTR WinlogonShutdownDialog( HWND hwndParent, PGLOBALS pGlobals, DWORD dwExcludeItems );
|
|
INT_PTR WinlogonDirtyDialog( HWND hwndParent, PGLOBALS pGlobals );
|
|
|
|
DWORD GetSessionCount();
|