VirtualBox

source: vbox/trunk/src/VBox/Additions/WINNT/VBoxCredProv/VBoxCredProvUtils.cpp@ 50323

Last change on this file since 50323 was 50323, checked in by vboxsync, 11 years ago

Vbox => VBox

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.3 KB
Line 
1/* $Id: VBoxCredProvUtils.cpp 50323 2014-02-05 10:20:04Z vboxsync $ */
2/** @file
3 * VBoxCredProvUtils - Misc. utility functions for VBoxCredProv.
4 */
5
6/*
7 * Copyright (C) 2012 Oracle Corporation
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.virtualbox.org. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16 */
17
18/*******************************************************************************
19* Header Files *
20*******************************************************************************/
21#include <Windows.h>
22#include <iprt/string.h>
23#include <VBox/log.h>
24#include <VBox/VBoxGuestLib.h>
25
26
27/*******************************************************************************
28* Global Variables *
29*******************************************************************************/
30/** Verbosity flag for guest logging. */
31DWORD g_dwVerbosity = 0;
32
33
34/**
35 * Displays a verbose message.
36 *
37 * @param iLevel Minimum log level required to display this message.
38 * @param pszFormat The message text.
39 * @param ... Format arguments.
40 */
41void VBoxCredProvVerbose(DWORD dwLevel, const char *pszFormat, ...)
42{
43 if (dwLevel <= g_dwVerbosity)
44 {
45 va_list args;
46 va_start(args, pszFormat);
47 char *psz = NULL;
48 RTStrAPrintfV(&psz, pszFormat, args);
49 va_end(args);
50
51 AssertPtr(psz);
52 LogRel(("%s", psz));
53
54 RTStrFree(psz);
55 }
56}
57
58
59/**
60 * Reports VBoxGINA's status to the host (treated as a guest facility).
61 *
62 * @return IPRT status code.
63 * @param enmStatus Status to report to the host.
64 */
65int VBoxCredProvReportStatus(VBoxGuestFacilityStatus enmStatus)
66{
67 VBoxCredProvVerbose(0, "VBoxCredProv: reporting status %d\n", enmStatus);
68
69 int rc = VbglR3AutoLogonReportStatus(enmStatus);
70 if (RT_FAILURE(rc))
71 VBoxCredProvVerbose(0, "VBoxCredProv: failed to report status %d, rc=%Rrc\n", enmStatus, rc);
72 return rc;
73}
74
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