VirtualBox

source: vbox/trunk/src/VBox/Additions/WINNT/VBoxGINA/testcase/tstVBoxGINA.cpp

Last change on this file was 98103, checked in by vboxsync, 17 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: 1.8 KB
RevLine 
[63093]1/* $Id: tstVBoxGINA.cpp 98103 2023-01-17 14:15:46Z vboxsync $ */
[40215]2/** @file
3 * tstVBoxGINA.cpp - Simple testcase for invoking VBoxGINA.dll.
4 */
5
6/*
[98103]7 * Copyright (C) 2012-2023 Oracle and/or its affiliates.
[40215]8 *
[96407]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
[40215]26 */
27
[62679]28#include <iprt/win/windows.h>
[95874]29#include <iprt/stream.h>
[40215]30
[63093]31int main()
[40215]32{
33 DWORD dwErr;
34
[95874]35 /*
[40215]36 * Be sure that:
37 * - the debug VBoxGINA gets loaded instead of a maybe installed
38 * release version in "C:\Windows\system32".
39 */
40
[63093]41 HMODULE hMod = LoadLibraryW(L"VBoxGINA.dll");
[95874]42 if (hMod)
[40215]43 {
[95874]44 RTPrintf("VBoxGINA found\n");
[40215]45
46 FARPROC pfnDebug = GetProcAddress(hMod, "VBoxGINADebug");
[95875]47 if (pfnDebug)
[40215]48 {
[95874]49 RTPrintf("Calling VBoxGINA ...\n");
50 dwErr = pfnDebug();
[40215]51 }
52 else
53 {
[95874]54 dwErr = GetLastError();
55 RTPrintf("Could not load VBoxGINADebug, error=%u\n", dwErr);
[40215]56 }
57
58 FreeLibrary(hMod);
59 }
[95874]60 else
61 {
62 dwErr = GetLastError();
63 RTPrintf("VBoxGINA.dll not found, error=%u\n", dwErr);
64 }
[40215]65
[95874]66 RTPrintf("Test returned: %s (%u)\n", dwErr == ERROR_SUCCESS ? "SUCCESS" : "FAILURE", dwErr);
[40215]67 return dwErr == ERROR_SUCCESS ? 0 : 1;
68}
[63093]69
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use