VirtualBox

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

Last change on this file was 98103, checked in by vboxsync, 16 months ago

Copyright year updates by scm.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.7 KB
Line 
1/* $Id: VBoxGINA.h 98103 2023-01-17 14:15:46Z vboxsync $ */
2/** @file
3 * VBoxGINA - Windows Logon DLL for VirtualBox.
4 */
5
6/*
7 * Copyright (C) 2006-2023 Oracle and/or its affiliates.
8 *
9 * This file is part of VirtualBox base platform packages, as
10 * available from https://www.virtualbox.org.
11 *
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation, in version 3 of the
15 * License.
16 *
17 * This program is distributed in the hope that it will be useful, but
18 * WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20 * General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, see <https://www.gnu.org/licenses>.
24 *
25 * SPDX-License-Identifier: GPL-3.0-only
26 */
27
28#ifndef GA_INCLUDED_SRC_WINNT_VBoxGINA_VBoxGINA_h
29#define GA_INCLUDED_SRC_WINNT_VBoxGINA_VBoxGINA_h
30#ifndef RT_WITHOUT_PRAGMA_ONCE
31# pragma once
32#endif
33
34/** Handle to Winlogon service */
35extern HANDLE hGinaWlx;
36/** Winlog function dispatch table */
37extern PWLX_DISPATCH_VERSION_1_1 pWlxFuncs;
38
39
40/** @name GINA entry point calls
41 * @{
42 */
43typedef BOOL (WINAPI *PGWLXNEGOTIATE)(DWORD, DWORD*);
44typedef BOOL (WINAPI *PGWLXINITIALIZE)(LPWSTR, HANDLE, PVOID, PVOID, PVOID*);
45typedef VOID (WINAPI *PGWLXDISPLAYSASNOTICE)(PVOID);
46typedef int (WINAPI *PGWLXLOGGEDOUTSAS)(PVOID, DWORD, PLUID, PSID, PDWORD,
47 PHANDLE, PWLX_MPR_NOTIFY_INFO, PVOID*);
48typedef BOOL (WINAPI *PGWLXACTIVATEUSERSHELL)(PVOID, PWSTR, PWSTR, PVOID);
49typedef int (WINAPI *PGWLXLOGGEDONSAS)(PVOID, DWORD, PVOID);
50typedef VOID (WINAPI *PGWLXDISPLAYLOCKEDNOTICE)(PVOID);
51typedef int (WINAPI *PGWLXWKSTALOCKEDSAS)(PVOID, DWORD);
52typedef BOOL (WINAPI *PGWLXISLOCKOK)(PVOID);
53typedef BOOL (WINAPI *PGWLXISLOGOFFOK)(PVOID);
54typedef VOID (WINAPI *PGWLXLOGOFF)(PVOID);
55typedef VOID (WINAPI *PGWLXSHUTDOWN)(PVOID, DWORD);
56/* 1.1 calls */
57typedef BOOL (WINAPI *PGWLXSCREENSAVERNOTIFY)(PVOID, BOOL*);
58typedef BOOL (WINAPI *PGWLXSTARTAPPLICATION)(PVOID, PWSTR, PVOID, PWSTR);
59/* 1.3 calls */
60typedef BOOL (WINAPI *PGWLXNETWORKPROVIDERLOAD)(PVOID, PWLX_MPR_NOTIFY_INFO);
61typedef BOOL (WINAPI *PGWLXDISPLAYSTATUSMESSAGE)(PVOID, HDESK, DWORD, PWSTR, PWSTR);
62typedef BOOL (WINAPI *PGWLXGETSTATUSMESSAGE)(PVOID, DWORD*, PWSTR, DWORD);
63typedef BOOL (WINAPI *PGWLXREMOVESTATUSMESSAGE)(PVOID);
64/* 1.4 calls */
65typedef BOOL (WINAPI *PGWLXGETCONSOLESWITCHCREDENTIALS)(PVOID, PVOID);
66typedef VOID (WINAPI *PGWLXRECONNECTNOTIFY)(PVOID);
67typedef VOID (WINAPI *PGWLXDISCONNECTNOTIFY)(PVOID);
68/** @} */
69
70#endif /* !GA_INCLUDED_SRC_WINNT_VBoxGINA_VBoxGINA_h */
71
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use