VirtualBox

source: vbox/trunk/src/VBox/Additions/WINNT/VBoxGINA/VBoxGINA.h@ 46155

Last change on this file since 46155 was 40214, checked in by vboxsync, 13 years ago

VBoxGINA: Added support for auto-logon facility, added guest log support, misc. refactoring, added basic testcase.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.3 KB
Line 
1/** @file
2 * VBoxGINA - Windows Logon DLL for VirtualBox.
3 */
4
5/*
6 * Copyright (C) 2006-2012 Oracle Corporation
7 *
8 * This file is part of VirtualBox Open Source Edition (OSE), as
9 * available from http://www.virtualbox.org. This file is free software;
10 * you can redistribute it and/or modify it under the terms of the GNU
11 * General Public License (GPL) as published by the Free Software
12 * Foundation, in version 2 as it comes in the "COPYING" file of the
13 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
14 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
15 */
16
17#ifndef __VBOXGINA_H__
18#define __VBOXGINA_H__
19
20/** Handle to Winlogon service */
21extern HANDLE hGinaWlx;
22/** Winlog function dispatch table */
23extern PWLX_DISPATCH_VERSION_1_1 pWlxFuncs;
24
25
26/** @name GINA entry point calls
27 * @{
28 */
29typedef BOOL (WINAPI *PGWLXNEGOTIATE)(DWORD, DWORD*);
30typedef BOOL (WINAPI *PGWLXINITIALIZE)(LPWSTR, HANDLE, PVOID, PVOID, PVOID*);
31typedef VOID (WINAPI *PGWLXDISPLAYSASNOTICE)(PVOID);
32typedef int (WINAPI *PGWLXLOGGEDOUTSAS)(PVOID, DWORD, PLUID, PSID, PDWORD,
33 PHANDLE, PWLX_MPR_NOTIFY_INFO, PVOID*);
34typedef BOOL (WINAPI *PGWLXACTIVATEUSERSHELL)(PVOID, PWSTR, PWSTR, PVOID);
35typedef int (WINAPI *PGWLXLOGGEDONSAS)(PVOID, DWORD, PVOID);
36typedef VOID (WINAPI *PGWLXDISPLAYLOCKEDNOTICE)(PVOID);
37typedef int (WINAPI *PGWLXWKSTALOCKEDSAS)(PVOID, DWORD);
38typedef BOOL (WINAPI *PGWLXISLOCKOK)(PVOID);
39typedef BOOL (WINAPI *PGWLXISLOGOFFOK)(PVOID);
40typedef VOID (WINAPI *PGWLXLOGOFF)(PVOID);
41typedef VOID (WINAPI *PGWLXSHUTDOWN)(PVOID, DWORD);
42/* 1.1 calls */
43typedef BOOL (WINAPI *PGWLXSCREENSAVERNOTIFY)(PVOID, BOOL*);
44typedef BOOL (WINAPI *PGWLXSTARTAPPLICATION)(PVOID, PWSTR, PVOID, PWSTR);
45/* 1.3 calls */
46typedef BOOL (WINAPI *PGWLXNETWORKPROVIDERLOAD)(PVOID, PWLX_MPR_NOTIFY_INFO);
47typedef BOOL (WINAPI *PGWLXDISPLAYSTATUSMESSAGE)(PVOID, HDESK, DWORD, PWSTR, PWSTR);
48typedef BOOL (WINAPI *PGWLXGETSTATUSMESSAGE)(PVOID, DWORD*, PWSTR, DWORD);
49typedef BOOL (WINAPI *PGWLXREMOVESTATUSMESSAGE)(PVOID);
50/* 1.4 calls */
51typedef BOOL (WINAPI *PGWLXGETCONSOLESWITCHCREDENTIALS)(PVOID, PVOID);
52typedef VOID (WINAPI *PGWLXRECONNECTNOTIFY)(PVOID);
53typedef VOID (WINAPI *PGWLXDISCONNECTNOTIFY)(PVOID);
54/** @} */
55
56#endif /* !__VBOXGINA_H__ */
57
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette