VirtualBox

Changeset 43234 in vbox


Ignore:
Timestamp:
Sep 6, 2012 9:40:20 PM (12 years ago)
Author:
vboxsync
Message:

Nvram.cpp: Missing space after DECLCALLBACK(void *) trips up the MSC preprocessor.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Main/src-client/Nvram.cpp

    r43157 r43234  
    11/* $Id$ */
    2 
    32/** @file
    4  * VBox NVRAM COM Class implementation
     3 * VBox NVRAM COM Class implementation.
    54 */
    65
     
    129128}
    130129
     130
    131131/**
    132132 * @interface_method_impl(PDMINVRAM,pfnFlushNvramStorage)
     
    137137    LogFlowFuncEnter();
    138138    PNVRAM pThis = RT_FROM_MEMBER(pInterface, NVRAM, INvram);
    139     int idxVariable = 0;
    140     for (idxVariable = 0; idxVariable < pThis->cLoadedVariables; ++idxVariable)
     139    for (int idxVariable = 0; idxVariable < pThis->cLoadedVariables; ++idxVariable)
    141140    {
    142141        drvNvram_pfnStoreNvramValue(pInterface, idxVariable, NULL, NULL, 0, NULL, 0);
     
    145144    return rc;
    146145}
     146
    147147
    148148/**
     
    201201 * @interface_method_impl(PDMIBASE,pfnQueryInterface)
    202202 */
    203 DECLCALLBACK(void *)Nvram::drvNvram_QueryInterface(PPDMIBASE pInterface, const char *pszIID)
     203DECLCALLBACK(void *) Nvram::drvNvram_QueryInterface(PPDMIBASE pInterface, const char *pszIID)
    204204{
    205205    LogFlow(("%s pInterface:%p, pszIID:%s\n", __FUNCTION__, pInterface, pszIID));
     
    211211    return NULL;
    212212}
     213
     214
     215/**
     216 * @interface_method_impl(PDMDRVREG,pfnDestruct)
     217 */
     218DECLCALLBACK(void) Nvram::drvNvram_Destruct(PPDMDRVINS pDrvIns)
     219{
     220    LogFlow(("%s: iInstance/#d\n", __FUNCTION__, pDrvIns->iInstance));
     221    PNVRAM pThis = PDMINS_2_DATA(pDrvIns, PNVRAM);
     222}
     223
    213224
    214225/**
     
    239250}
    240251
    241 /**
    242  * @interface_method_impl(PDMDRVREG,pfnDestruct)
    243  */
    244 DECLCALLBACK(void) Nvram::drvNvram_Destruct(PPDMDRVINS pDrvIns)
    245 {
    246     LogFlow(("%s: iInstance/#d\n", __FUNCTION__, pDrvIns->iInstance));
    247     PNVRAM pThis = PDMINS_2_DATA(pDrvIns, PNVRAM);
    248 }
    249252
    250253const PDMDRVREG Nvram::DrvReg =
Note: See TracChangeset for help on using the changeset viewer.

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