VirtualBox

Changeset 42358 in vbox for trunk/src/VBox/Main


Ignore:
Timestamp:
Jul 24, 2012 12:35:19 PM (12 years ago)
Author:
vboxsync
Message:

build fix

Location:
trunk/src/VBox/Main
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Main/include/GuestCtrlImplPrivate.h

    r42354 r42358  
    173173    GuestProcessWaitResult GetResult(void) { return mWaitResult; }
    174174
    175     int Signal(ProcessWaitResult enmResult, int rc = VINF_SUCCESS);
     175    int Signal(ProcessWaitResult_T enmResult, int rc = VINF_SUCCESS);
    176176
    177177protected:
  • trunk/src/VBox/Main/include/GuestProcessImpl.h

    r42354 r42358  
    9494    int prepareExecuteEnv(const char *pszEnv, void **ppvList, ULONG *pcbList, ULONG *pcEnvVars);
    9595    int sendCommand(uint32_t uFunction, uint32_t uParms, PVBOXHGCMSVCPARM paParms);
    96     int signalWaiters(ProcessWaitResult enmWaitResult, int rc = VINF_SUCCESS);
     96    int signalWaiters(ProcessWaitResult_T enmWaitResult, int rc = VINF_SUCCESS);
    9797    static DECLCALLBACK(int) startProcessThread(RTTHREAD Thread, void *pvUser);
    9898    /** @}  */
  • trunk/src/VBox/Main/src-client/GuestCtrlPrivate.cpp

    r42356 r42358  
    6363    }
    6464
    65     LogFlowThisFuncLeaveRC(rc);
     65    LogFlowFuncLeaveRC(rc);
    6666    return rc;
    6767}
     
    120120
    121121GuestCtrlCallback::GuestCtrlCallback(void)
    122     : mType(VBOXGUESTCTRLCALLBACKTYPE_UNKNOWN),
    123       uFlags(0),
    124       pvData(NULL),
    125       cbData(0)
     122    : pvData(NULL),
     123      cbData(0),
     124     mType(VBOXGUESTCTRLCALLBACKTYPE_UNKNOWN),
     125      uFlags(0)
    126126{
    127127}
    128128
    129129GuestCtrlCallback::GuestCtrlCallback(eVBoxGuestCtrlCallbackType enmType)
    130     : mType(VBOXGUESTCTRLCALLBACKTYPE_UNKNOWN),
    131       uFlags(0),
    132       pvData(NULL),
    133       cbData(0)
     130    : pvData(NULL),
     131      cbData(0),
     132      mType(VBOXGUESTCTRLCALLBACKTYPE_UNKNOWN),
     133      uFlags(0)
    134134{
    135135    int rc = Init(enmType);
     
    234234}
    235235
    236 int GuestProcessEvent::Signal(ProcessWaitResult enmResult, int rc /*= VINF_SUCCESS*/)
     236int GuestProcessEvent::Signal(ProcessWaitResult_T enmResult, int rc /*= VINF_SUCCESS*/)
    237237{
    238238    mWaitResult.mRC = rc;
  • trunk/src/VBox/Main/src-client/GuestProcessImpl.cpp

    r42354 r42358  
    544544
    545545    BOOL fSignal = FALSE;
    546     ProcessWaitResult enmWaitResult;
     546    ProcessWaitResult_T enmWaitResult;
    547547    uint32_t uWaitFlags = mData.mWaitEvent
    548548                        ? mData.mWaitEvent->GetWaitFlags() : 0;
     
    762762}
    763763
    764 int GuestProcess::signalWaiters(ProcessWaitResult enmWaitResult, int rc /*= VINF_SUCCESS*/)
     764int GuestProcess::signalWaiters(ProcessWaitResult_T enmWaitResult, int rc /*= VINF_SUCCESS*/)
    765765{
    766766    LogFlowFunc(("enmWaitResult=%d, rc=%Rrc, mWaitCount=%RU32, mWaitEvent=%p\n",
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