VirtualBox

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

Last change on this file since 20371 was 16138, checked in by vboxsync, 16 years ago

VBoxGINA: Added proper backdoor logging + release log indication when it gets loaded. This also fixed crashing of the system when running in debug mode.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.5 KB
Line 
1/** @file
2 *
3 * VBoxGINA -- Windows Logon DLL for VirtualBox
4 *
5 * Copyright (C) 2006-2007 Sun Microsystems, Inc.
6 *
7 * This file is part of VirtualBox Open Source Edition (OSE), as
8 * available from http://www.virtualbox.org. This file is free software;
9 * you can redistribute it and/or modify it under the terms of the GNU
10 * General Public License (GPL) as published by the Free Software
11 * Foundation, in version 2 as it comes in the "COPYING" file of the
12 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
13 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
14 *
15 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
16 * Clara, CA 95054 USA or visit http://www.sun.com if you need
17 * additional information or have any questions.
18 */
19
20#ifndef __H_VBOXGINA
21#define __H_VBOXGINA
22
23#include <iprt/initterm.h>
24#include <iprt/log.h>
25
26#include <VBox/VBoxGuest.h>
27#include <VBox/Log.h>
28
29/** Handle to Winlogon service */
30extern HANDLE hGinaWlx;
31/** Winlog function dispatch table */
32extern PWLX_DISPATCH_VERSION_1_1 pWlxFuncs;
33
34
35/**
36 * GINA entry point calls
37 */
38typedef BOOL (WINAPI *PGWLXNEGOTIATE)(DWORD, DWORD*);
39typedef BOOL (WINAPI *PGWLXINITIALIZE)(LPWSTR, HANDLE, PVOID, PVOID, PVOID*);
40typedef VOID (WINAPI *PGWLXDISPLAYSASNOTICE)(PVOID);
41typedef int (WINAPI *PGWLXLOGGEDOUTSAS)(PVOID, DWORD, PLUID, PSID, PDWORD,
42 PHANDLE, PWLX_MPR_NOTIFY_INFO, PVOID*);
43typedef BOOL (WINAPI *PGWLXACTIVATEUSERSHELL)(PVOID, PWSTR, PWSTR, PVOID);
44typedef int (WINAPI *PGWLXLOGGEDONSAS)(PVOID, DWORD, PVOID);
45typedef VOID (WINAPI *PGWLXDISPLAYLOCKEDNOTICE)(PVOID);
46typedef int (WINAPI *PGWLXWKSTALOCKEDSAS)(PVOID, DWORD);
47typedef BOOL (WINAPI *PGWLXISLOCKOK)(PVOID);
48typedef BOOL (WINAPI *PGWLXISLOGOFFOK)(PVOID);
49typedef VOID (WINAPI *PGWLXLOGOFF)(PVOID);
50typedef VOID (WINAPI *PGWLXSHUTDOWN)(PVOID, DWORD);
51/* 1.1 calls */
52typedef BOOL (WINAPI *PGWLXSCREENSAVERNOTIFY)(PVOID, BOOL*);
53typedef BOOL (WINAPI *PGWLXSTARTAPPLICATION)(PVOID, PWSTR, PVOID, PWSTR);
54/* 1.3 calls */
55typedef BOOL (WINAPI *PGWLXNETWORKPROVIDERLOAD)(PVOID, PWLX_MPR_NOTIFY_INFO);
56typedef BOOL (WINAPI *PGWLXDISPLAYSTATUSMESSAGE)(PVOID, HDESK, DWORD, PWSTR, PWSTR);
57typedef BOOL (WINAPI *PGWLXGETSTATUSMESSAGE)(PVOID, DWORD*, PWSTR, DWORD);
58typedef BOOL (WINAPI *PGWLXREMOVESTATUSMESSAGE)(PVOID);
59/* 1.4 calls */
60typedef BOOL (WINAPI *PGWLXGETCONSOLESWITCHCREDENTIALS)(PVOID, PVOID);
61typedef VOID (WINAPI *PGWLXRECONNECTNOTIFY)(PVOID);
62typedef VOID (WINAPI *PGWLXDISCONNECTNOTIFY)(PVOID);
63
64
65
66#endif /* __H_VBOXGINA */
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