VirtualBox

Changeset 36258 in vbox for trunk/src/VBox/Additions


Ignore:
Timestamp:
Mar 11, 2011 9:53:23 AM (14 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
70498
Message:

VBoxGINA: Added support for locked workstations.

Location:
trunk/src/VBox/Additions/WINNT/VBoxGINA
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Additions/WINNT/VBoxGINA/Dialog.cpp

    r30852 r36258  
    66/*
    77 *
    8  * Copyright (C) 2006-2010 Oracle Corporation
     8 * Copyright (C) 2006-2011 Oracle Corporation
    99 *
    1010 * This file is part of VirtualBox Open Source Edition (OSE), as
     
    1919#include <windows.h>
    2020#include <stdio.h>      /* Needed for swprintf() */
     21
    2122#include "Dialog.h"
    2223#include "WinWlx.h"
     
    2425#include "VBoxGINA.h"
    2526
    26 //
    27 // MSGINA dialog box IDs.
    28 //
     27
     28/*
     29 * Dialog IDs for legacy Windows OSes (e.g. NT 4.0).
     30 */
    2931#define IDD_WLXDIAPLAYSASNOTICE_DIALOG    1400
    3032#define IDD_WLXLOGGEDOUTSAS_DIALOG        1450
    31 /* the Windows 2000 ID */
    32 #define IDD_WLXLOGGEDOUTSAS_DIALOG2       1500
     33/** Change password dialog: To change the current
     34 *  account password. */
    3335#define IDD_CHANGE_PASSWORD_DIALOG        1550
    3436#define IDD_WLXLOGGEDONSAS_DIALOG         1650
     37/** Security dialog: To lock the workstation, log off
     38 *  change password, ... */
     39#define IDD_SECURITY_DIALOG               1800
     40/** Locked dialog: To unlock the currently lockted
     41 *  workstation. */
    3542#define IDD_WLXWKSTALOCKEDSAS_DIALOG      1850
    36 
    37 //
    38 // MSGINA control IDs
    39 //
     43/** Shutdown dialog: To either restart, logoff current
     44 *  user or shutdown the workstation. */
     45#define IDD_SHUTDOWN_DIALOG               2200
     46/** Logoff dialog: "Do you really want to logoff?". */
     47#define IDD_LOGOFF_DIALOG                 2250
     48
     49
     50/*
     51 * Dialog IDs for Windows 2000 and up.
     52 */
     53#define IDD_WLXLOGGEDOUTSAS_DIALOG2       1500
     54/** Change password dialog: To change the current
     55 *  account password. */
     56#define IDD_CHANGE_PASSWORD_DIALOG2       1700
     57/** Locked dialog: To unlock the currently lockted
     58 *  workstation. */
     59#define IDD_WLXWKSTALOCKEDSAS_DIALOG2     1950
     60
     61
     62/*
     63 * Control IDs.
     64 */
    4065#define IDC_WLXLOGGEDOUTSAS_USERNAME      1453
    4166#define IDC_WLXLOGGEDOUTSAS_USERNAME2     1502
     
    4469#define IDC_WLXLOGGEDOUTSAS_DOMAIN        1455
    4570#define IDC_WLXLOGGEDOUTSAS_DOMAIN2       1504
    46 #define IDC_WLXWKSTALOCKEDSAS_DOMAIN      1856
     71
     72#define IDC_WKSTALOCKED_USERNAME          1953
     73#define IDC_WKSTALOCKED_PASSWORD          1954
     74#define IDC_WKSTALOCKEd_DOMAIN            1856
     75#define IDC_WKSTALOCKED_DOMAIN2           1956
     76
     77
     78/*
     79 * Own IDs.
     80 */
     81#define IDT_BASE                          WM_USER  + 1100 /* Timer ID base. */
     82#define IDT_LOGGEDONDLG_POLL              IDT_BASE + 1
     83#define IDT_LOCKEDDLG_POLL                IDT_BASE + 2
    4784
    4885static DLGPROC g_pfnWlxLoggedOutSASDlgProc = NULL;
     86static DLGPROC g_pfnWlxLockedSASDlgProc = NULL;
    4987
    5088static PWLX_DIALOG_BOX_PARAM g_pfnWlxDialogBoxParam = NULL;
     
    106144// Redirected WlxLoggedOutSASDlgProc().
    107145//
    108 
    109 #define CREDPOLL_TIMERID 0x1243
    110 
    111146BOOL credentialsToUI(HWND hwndUserId, HWND hwndPassword, HWND hwndDomain)
    112147{
     
    183218{
    184219    BOOL bResult;
    185     static HWND hwndUserId, hwndPassword, hwndDomain = 0;
    186     static UINT_PTR timer = 0;
     220    static HWND s_hwndUserId, s_hwndPassword, s_hwndDomain = 0;
    187221
    188222    /*Log(("VBoxGINA::MyWlxLoggedOutSASDlgProc\n"));*/
     
    203237
    204238            /* get the entry fields */
    205             hwndUserId = GetDlgItem(hwndDlg, IDC_WLXLOGGEDOUTSAS_USERNAME);
    206             if (!hwndUserId)
    207                 hwndUserId = GetDlgItem(hwndDlg, IDC_WLXLOGGEDOUTSAS_USERNAME2);
    208             hwndPassword = GetDlgItem(hwndDlg, IDC_WLXLOGGEDOUTSAS_PASSWORD);
    209             if (!hwndPassword)
    210                 hwndPassword = GetDlgItem(hwndDlg, IDC_WLXLOGGEDOUTSAS_PASSWORD2);
    211             hwndDomain = GetDlgItem(hwndDlg, IDC_WLXLOGGEDOUTSAS_DOMAIN);
    212             if (!hwndDomain)
    213                 hwndDomain = GetDlgItem(hwndDlg, IDC_WLXLOGGEDOUTSAS_DOMAIN2);
     239            s_hwndUserId = GetDlgItem(hwndDlg, IDC_WLXLOGGEDOUTSAS_USERNAME);
     240            if (!s_hwndUserId)
     241                s_hwndUserId = GetDlgItem(hwndDlg, IDC_WLXLOGGEDOUTSAS_USERNAME2);
     242            s_hwndPassword = GetDlgItem(hwndDlg, IDC_WLXLOGGEDOUTSAS_PASSWORD);
     243            if (!s_hwndPassword)
     244                s_hwndPassword = GetDlgItem(hwndDlg, IDC_WLXLOGGEDOUTSAS_PASSWORD2);
     245            s_hwndDomain = GetDlgItem(hwndDlg, IDC_WLXLOGGEDOUTSAS_DOMAIN);
     246            if (!s_hwndDomain)
     247                s_hwndDomain = GetDlgItem(hwndDlg, IDC_WLXLOGGEDOUTSAS_DOMAIN2);
    214248
    215249            Log(("VBoxGINA::MyWlxLoggedOutSASDlgProc: hwndUserId: %x, hwndPassword: %d, hwndDomain: %d\n",
    216                  hwndUserId, hwndPassword, hwndDomain));
     250                 s_hwndUserId, s_hwndPassword, s_hwndDomain));
    217251
    218252            /* terminate the credentials poller thread, it's done is job */
     
    225259                {
    226260                    /* fill in credentials to appropriate UI elements */
    227                     credentialsToUI(hwndUserId, hwndPassword, hwndDomain);
     261                    credentialsToUI(s_hwndUserId, s_hwndPassword, s_hwndDomain);
    228262
    229263                    /* we got the credentials, null them out */
     
    241275                 * Create a timer and poll for them.
    242276                 */
    243                 timer = SetTimer(hwndDlg, CREDPOLL_TIMERID, 200, NULL);
    244                 if (!timer)
    245                 {
    246                     Log(("VBoxGINA::MyWlxLoggedOutSASDlgProc: failed creating timer! last error: %s\n",
     277                UINT_PTR uTimer = SetTimer(hwndDlg, IDT_LOGGEDONDLG_POLL, 200, NULL);
     278                if (!uTimer)
     279                    Log(("VBoxGINA::MyWlxLoggedOutSASDlgProc: failed creating timer! Last error: %ld\n",
    247280                         GetLastError()));
    248                 }
    249281            }
    250282            break;
     
    254286        {
    255287            /* is it our credentials poller timer? */
    256             if (wParam == CREDPOLL_TIMERID)
     288            if (wParam == IDT_LOGGEDONDLG_POLL)
    257289            {
    258290                if (credentialsAvailable())
     
    261293                    {
    262294                        /* fill in credentials to appropriate UI elements */
    263                         credentialsToUI(hwndUserId, hwndPassword, hwndDomain);
     295                        credentialsToUI(s_hwndUserId, s_hwndPassword, s_hwndDomain);
    264296
    265297                        /* we got the credentials, null them out */
     
    271303
    272304                        /* we don't need the timer any longer */
    273                         /** @todo will we leak the timer when logging in manually? Should we kill it on WM_CLOSE? */
    274                         KillTimer(hwndDlg, CREDPOLL_TIMERID);
     305                        KillTimer(hwndDlg, IDT_LOGGEDONDLG_POLL);
    275306                    }
    276307                }
     
    278309            break;
    279310        }
     311
     312        case WM_DESTROY:
     313            KillTimer(hwndDlg, IDT_LOGGEDONDLG_POLL);
     314            break;
     315    }
     316    return bResult;
     317}
     318
     319
     320INT_PTR CALLBACK MyWlxLockedSASDlgProc(HWND   hwndDlg,  // handle to dialog box
     321                                       UINT   uMsg,     // message
     322                                       WPARAM wParam,   // first message parameter
     323                                       LPARAM lParam)   // second message parameter
     324{
     325    BOOL bResult;
     326    static HWND s_hwndPassword = 0;
     327
     328    /*Log(("VBoxGINA::MyWlxLockedSASDlgProc\n"));*/
     329
     330    //
     331    // Pass on to MSGINA first.
     332    //
     333    bResult = g_pfnWlxLockedSASDlgProc(hwndDlg, uMsg, wParam, lParam);
     334
     335    //
     336    // We are only interested in the WM_INITDIALOG message.
     337    //
     338    switch (uMsg)
     339    {
     340        case WM_INITDIALOG:
     341        {
     342            Log(("VBoxGINA::MyWlxLockedSASDlgProc: got WM_INITDIALOG\n"));
     343
     344            /* get the entry fields */
     345            s_hwndPassword = GetDlgItem(hwndDlg, IDC_WKSTALOCKED_PASSWORD);
     346            Log(("VBoxGINA::MyWlxLockedSASDlgProc: hwndPassword: %d\n", s_hwndPassword));
     347
     348            /* terminate the credentials poller thread, it's done is job */
     349            credentialsPollerTerminate();
     350
     351            if (credentialsAvailable())
     352            {
     353                /* query the credentials from VBox */
     354                if (credentialsRetrieve())
     355                {
     356                    /* fill in credentials to appropriate UI elements */
     357                    credentialsToUI(NULL /* User ID */, s_hwndPassword, NULL /* Domain */);
     358
     359                    /* we got the credentials, null them out */
     360                    credentialsReset();
     361
     362                    /* confirm the logon dialog, simulating the user pressing "OK" */
     363                    WPARAM wParam = MAKEWPARAM(IDOK, BN_CLICKED);
     364                    PostMessage(hwndDlg, WM_COMMAND, wParam, 0);
     365                }
     366            }
     367            else
     368            {
     369                /*
     370                 * The dialog is there but we don't have any credentials.
     371                 * Create a timer and poll for them.
     372                 */
     373                UINT_PTR uTimer = SetTimer(hwndDlg, IDT_LOCKEDDLG_POLL, 200, NULL);
     374                if (!uTimer)
     375                    Log(("VBoxGINA::MyWlxLockedSASDlgProc: failed creating timer! Last error: %ld\n",
     376                         GetLastError()));
     377            }
     378            break;
     379        }
     380
     381        case WM_TIMER:
     382        {
     383            /* is it our credentials poller timer? */
     384            if (wParam == IDT_LOCKEDDLG_POLL)
     385            {
     386                if (credentialsAvailable())
     387                {
     388                    if (credentialsRetrieve())
     389                    {
     390                        /* fill in credentials to appropriate UI elements */
     391                        credentialsToUI(NULL /* User ID */, s_hwndPassword, NULL /* Domain */);
     392
     393                        /* we got the credentials, null them out */
     394                        credentialsReset();
     395
     396                        /* confirm the logon dialog, simulating the user pressing "OK" */
     397                        WPARAM wParam = MAKEWPARAM(IDOK, BN_CLICKED);
     398                        PostMessage(hwndDlg, WM_COMMAND, wParam, 0);
     399
     400                        /* we don't need the timer any longer */
     401                        KillTimer(hwndDlg, IDT_LOCKEDDLG_POLL);
     402                    }
     403                }
     404            }
     405            break;
     406        }
     407
     408        case WM_DESTROY:
     409            KillTimer(hwndDlg, IDT_LOCKEDDLG_POLL);
     410            break;
    280411    }
    281412    return bResult;
     
    290421                               LPARAM  dwInitParam)
    291422{
    292    Log(("VBoxGINA::MyWlxDialogBoxParam: lpszTemplate = %d\n", lpszTemplate));
    293 
    294    //
    295    // We only know MSGINA dialogs by identifiers.
    296    //
    297    if (!HIWORD((int)(void*)lpszTemplate))
    298    {
    299       //
    300       // Hook appropriate dialog boxes as necessary.
    301       //
    302       switch ((DWORD) lpszTemplate)
    303       {
    304          case IDD_WLXLOGGEDOUTSAS_DIALOG:
    305          case IDD_WLXLOGGEDOUTSAS_DIALOG2:
    306          {
    307             Log(("VBoxGINA::MyWlxDialogBoxParam: returning hooked logged out dialog\n"));
    308             g_pfnWlxLoggedOutSASDlgProc = dlgprc;
    309             return g_pfnWlxDialogBoxParam(hWlx, hInst, lpszTemplate, hwndOwner,
    310                                           MyWlxLoggedOutSASDlgProc, dwInitParam);
    311          }
    312       }
    313    }
    314 
    315    //
    316    // The rest will not be redirected.
    317    //
    318    return g_pfnWlxDialogBoxParam(hWlx, hInst, lpszTemplate,
    319                                  hwndOwner, dlgprc, dwInitParam);
     423    Log(("VBoxGINA::MyWlxDialogBoxParam: lpszTemplate = %ls\n", lpszTemplate));
     424
     425    //
     426    // We only know MSGINA dialogs by identifiers.
     427    //
     428    if (!HIWORD((int)(void*)lpszTemplate))
     429    {
     430        //
     431        // Hook appropriate dialog boxes as necessary.
     432        //
     433        switch ((DWORD) lpszTemplate)
     434        {
     435            case IDD_WLXLOGGEDOUTSAS_DIALOG:     /* Windows NT 4.0. */
     436            case IDD_WLXLOGGEDOUTSAS_DIALOG2:    /* Windows 2000 and up. */
     437            {
     438                Log(("VBoxGINA::MyWlxDialogBoxParam: returning hooked LOGGED OUT dialog\n"));
     439                g_pfnWlxLoggedOutSASDlgProc = dlgprc;
     440                return g_pfnWlxDialogBoxParam(hWlx, hInst, lpszTemplate, hwndOwner,
     441                                              MyWlxLoggedOutSASDlgProc, dwInitParam);
     442            }
     443
     444            case IDD_WLXWKSTALOCKEDSAS_DIALOG:   /* Windows NT 4.0. */
     445            case IDD_WLXWKSTALOCKEDSAS_DIALOG2:  /* Windows 2000 and up. */
     446            {
     447                Log(("VBoxGINA::MyWlxDialogBoxParam: returning hooked LOCKED dialog\n"));
     448                g_pfnWlxLockedSASDlgProc = dlgprc;
     449                return g_pfnWlxDialogBoxParam(hWlx, hInst, lpszTemplate, hwndOwner,
     450                                              MyWlxLockedSASDlgProc, dwInitParam);
     451            }
     452
     453            /** @todo Add other hooking stuff here. */
     454
     455            default:
     456            {
     457                char szBuf[1024];
     458                sprintf(szBuf, "VBoxGINA::MyWlxDialogBoxParam: dialog %ld not handled\n", (DWORD)lpszTemplate);
     459                Log((szBuf));
     460                break;
     461            }
     462        }
     463    }
     464
     465    //
     466    // The rest will not be redirected.
     467    //
     468    return g_pfnWlxDialogBoxParam(hWlx, hInst, lpszTemplate,
     469                                  hwndOwner, dlgprc, dwInitParam);
    320470}
    321471
  • trunk/src/VBox/Additions/WINNT/VBoxGINA/VBoxGINA.cpp

    r36012 r36258  
    33 * VBoxGINA -- Windows Logon DLL for VirtualBox
    44 *
    5  * Copyright (C) 2006-2007 Oracle Corporation
     5 * Copyright (C) 2006-2011 Oracle Corporation
    66 *
    77 * This file is part of VirtualBox Open Source Edition (OSE), as
     
    2424
    2525/*
    26  * Global variables
    27  */
    28 
    29 
    30 /** DLL instance handle */
     26 * Global variables.
     27 */
     28
     29/** DLL instance handle. */
    3130HINSTANCE hDllInstance;
    3231
    33 /** Version of Winlogon */
     32/** Version of Winlogon. */
    3433DWORD wlxVersion;
    3534
    36 /** Handle to Winlogon service */
     35/** Handle to Winlogon service. */
    3736HANDLE hGinaWlx;
    38 /** Winlog function dispatch table */
     37/** Winlog function dispatch table. */
    3938PWLX_DISPATCH_VERSION_1_1 pWlxFuncs;
    4039
    4140/**
    42  * Function pointers to MSGINA entry points
     41 * Function pointers to MSGINA entry points.
    4342 */
    4443PGWLXNEGOTIATE GWlxNegotiate;
     
    5453PGWLXLOGOFF GWlxLogoff;
    5554PGWLXSHUTDOWN GWlxShutdown;
    56 /* GINA 1.1 */
     55/* GINA 1.1. */
    5756PGWLXSTARTAPPLICATION GWlxStartApplication;
    5857PGWLXSCREENSAVERNOTIFY GWlxScreenSaverNotify;
    59 /* GINA 1.3 */
     58/* GINA 1.3. */
    6059PGWLXNETWORKPROVIDERLOAD GWlxNetworkProviderLoad;
    6160PGWLXDISPLAYSTATUSMESSAGE GWlxDisplayStatusMessage;
    6261PGWLXGETSTATUSMESSAGE GWlxGetStatusMessage;
    6362PGWLXREMOVESTATUSMESSAGE GWlxRemoveStatusMessage;
    64 /* GINA 1.4 */
     63/* GINA 1.4. */
    6564PGWLXGETCONSOLESWITCHCREDENTIALS GWlxGetConsoleSwitchCredentials;
    6665PGWLXRECONNECTNOTIFY GWlxReconnectNotify;
    6766PGWLXDISCONNECTNOTIFY GWlxDisconnectNotify;
    68 
    6967
    7068
     
    8280            RTR3Init();
    8381            VbglR3Init();
    84             LogRel(("VBoxGina: DLL loaded.\n"));
     82            LogRel(("VBoxGINA: DLL loaded.\n"));
    8583
    8684            DisableThreadLibraryCalls(hInstance);
     
    9189        case DLL_PROCESS_DETACH:
    9290        {
    93             LogRel(("VBoxGina: DLL unloaded.\n"));
     91            LogRel(("VBoxGINA: DLL unloaded.\n"));
    9492            VbglR3Term();
    9593            /// @todo RTR3Term();
     
    102100    return TRUE;
    103101}
     102
    104103
    105104BOOL WINAPI WlxNegotiate(DWORD dwWinlogonVersion,
     
    272271        /* start the credentials poller thread */
    273272        credentialsPollerCreate();
    274         /* forward call to MSGINA */
     273        /* Forward call to MSGINA. */
    275274        GWlxDisplaySASNotice(pWlxContext);
    276275    }
     
    286285    /* when performing a direct logon without C-A-D, our poller might not be running */
    287286    if (!credentialsAvailable())
    288     {
    289287        credentialsPollerCreate();
    290     }
    291288
    292289    int iRet;
     
    304301        // pMprNotifyInfo->pszPassword
    305302        // pMprNotifyInfo->pszOldPassword
    306 
    307303    }
    308304
     
    316312    Log(("VBoxGINA::WlxActivateUserShell\n"));
    317313
    318     /* forward call to MSGINA */
     314    /* Forward call to MSGINA. */
    319315    return GWlxActivateUserShell(pWlxContext, pszDesktopName, pszMprLogonScript, pEnvironment);
    320316}
     
    339335{
    340336    Log(("VBoxGINA::WlxDisplayLockedNotice\n"));
    341     /* forward call to MSGINA */
     337    /* Forward call to MSGINA. */
    342338    GWlxDisplayLockedNotice(pWlxContext);
    343339}
     
    347343{
    348344    Log(("VBoxGINA::WlxIsLockOk\n"));
    349     /* forward call to MSGINA */
     345    /* Forward call to MSGINA. */
    350346    return GWlxIsLockOk(pWlxContext);
    351347}
     
    354350{
    355351    Log(("VBoxGINA::WlxWkstaLockedSAS\n"));
    356     /* forward call to MSGINA */
     352
     353    /* when performing a direct logon without C-A-D, our poller might not be running */
     354    if (!credentialsAvailable())
     355        credentialsPollerCreate();
     356
     357    /* Forward call to MSGINA. */
    357358    return GWlxWkstaLockedSAS(pWlxContext, dwSasType);
    358359}
     
    383384    Log(("VBoxGINA::WlxLogoff\n"));
    384385
    385     /* forward call to MSGINA */
     386    /* Forward call to MSGINA. */
    386387    GWlxLogoff(pWlxContext);
    387388}
     
    392393    Log(("VBoxGINA::WlxShutdown\n"));
    393394
    394     /* forward call to MSGINA */
     395    /* Forward call to MSGINA. */
    395396    GWlxShutdown(pWlxContext, ShutdownType);
    396397}
     
    400401 * GINA 1.1 entry points
    401402 */
    402 
    403403BOOL WINAPI WlxScreenSaverNotify(PVOID pWlxContext, BOOL *pSecure)
    404404{
    405405    Log(("VBoxGINA::WlxScreenSaverNotify\n"));
    406406
    407     /* forward to MSGINA if present */
     407    /* Forward to MSGINA if present. */
    408408    if (GWlxScreenSaverNotify)
    409409        return GWlxScreenSaverNotify(pWlxContext, pSecure);
     
    413413}
    414414
     415
    415416BOOL WINAPI WlxStartApplication(PVOID pWlxContext, PWSTR pszDesktopName,
    416417                                PVOID pEnvironment, PWSTR pszCmdLine)
     
    419420        pWlxContext, pszDesktopName, pEnvironment, pszCmdLine));
    420421
    421     /* forward to MSGINA if present */
     422    /* Forward to MSGINA if present. */
    422423    if (GWlxStartApplication)
    423424        return GWlxStartApplication(pWlxContext, pszDesktopName, pEnvironment, pszCmdLine);
     
    425426}
    426427
     428
    427429/*
    428430 * GINA 1.3 entry points
     
    432434    Log(("VBoxGINA::WlxNetworkProviderLoad\n"));
    433435
    434     /* forward to MSGINA if present */
     436    /* Forward to MSGINA if present. */
    435437    if (GWlxNetworkProviderLoad)
    436438        return GWlxNetworkProviderLoad(pWlxContext, pNprNotifyInfo);
     
    444446    Log(("VBoxGINA::WlxDisplayStatusMessage\n"));
    445447
    446     /* forward to MSGINA if present */
     448    /* Forward to MSGINA if present. */
    447449    if (GWlxDisplayStatusMessage)
    448450        return GWlxDisplayStatusMessage(pWlxContext, hDesktop, dwOptions, pTitle, pMessage);
     
    456458    Log(("VBoxGINA::WlxGetStatusMessage\n"));
    457459
    458     /* forward to MSGINA if present */
     460    /* Forward to MSGINA if present. */
    459461    if (GWlxGetStatusMessage)
    460462        return GWlxGetStatusMessage(pWlxContext, pdwOptions, pMessage, dwBufferSize);
     
    467469    Log(("VBoxGINA::WlxRemoveStatusMessage\n"));
    468470
    469     /* forward to MSGINA if present */
     471    /* Forward to MSGINA if present. */
    470472    if (GWlxRemoveStatusMessage)
    471473        return GWlxRemoveStatusMessage(pWlxContext);
     
    477479 * GINA 1.4 entry points
    478480 */
    479 
    480481BOOL WINAPI WlxGetConsoleSwitchCredentials(PVOID pWlxContext,PVOID pCredInfo)
    481482{
     
    488489}
    489490
     491
    490492VOID WINAPI WlxReconnectNotify(PVOID pWlxContext)
    491493{
    492494    Log(("VBoxGINA::WlxReconnectNotify\n"));
    493495
    494     /* forward to MSGINA if present */
     496    /* Forward to MSGINA if present. */
    495497    if (GWlxReconnectNotify)
    496498        GWlxReconnectNotify(pWlxContext);
    497499}
    498500
     501
    499502VOID WINAPI WlxDisconnectNotify(PVOID pWlxContext)
    500503{
    501504    Log(("VBoxGINA::WlxDisconnectNotify\n"));
    502505
    503     /* forward to MSGINA if present */
     506    /* Forward to MSGINA if present. */
    504507    if (GWlxDisconnectNotify)
    505508        GWlxDisconnectNotify(pWlxContext);
    506509}
     510
Note: See TracChangeset for help on using the changeset viewer.

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