Changeset 68798 in vbox for trunk/src/VBox/Main/include
- Timestamp:
- Sep 20, 2017 10:27:16 AM (8 years ago)
- svn:sync-xref-src-repo-rev:
- 118045
- Location:
- trunk/src/VBox/Main/include
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/ConsoleImpl.h
r68485 r68798 155 155 HRESULT i_updateMachineState(MachineState_T aMachineState); 156 156 HRESULT i_getNominalState(MachineState_T &aNominalState); 157 Utf8Str i_getAudioAdapterDeviceName(IAudioAdapter *aAudioAdapter); 157 158 158 159 // events from IInternalSessionControl -
trunk/src/VBox/Main/include/DisplayImpl.h
r68534 r68798 5 5 6 6 /* 7 * Copyright (C) 2006-201 6Oracle Corporation7 * Copyright (C) 2006-2017 Oracle Corporation 8 8 * 9 9 * This file is part of VirtualBox Open Source Edition (OSE), as … … 32 32 #endif 33 33 34 #ifdef VBOX_WITH_VIDEOREC 35 # include "../src-client/VideoRec.h" 36 struct VIDEORECCONTEXT; 37 #endif 38 34 39 #include "DisplaySourceBitmapWrap.h" 35 40 36 41 37 42 class Console; 38 struct VIDEORECCONTEXT;39 43 40 44 typedef struct _DISPLAYFBINFO … … 204 208 void VideoAccelFlushVMMDev(void); 205 209 206 int i_videoCaptureEnableScreens(ComSafeArrayIn(BOOL, aScreens)); 210 #ifdef VBOX_WITH_VIDEOREC 211 VIDEORECFEATURES i_videoCaptureGetEnabled(void); 212 bool i_videoCaptureStarted(void); 213 int i_videoCaptureInvalidate(void); 207 214 int i_videoCaptureSendAudio(const void *pvData, size_t cbData, uint64_t uTimestampMs); 208 int i_videoCaptureStart(); 209 void i_videoCaptureStop(); 210 #ifdef VBOX_WITH_VIDEOREC 211 void videoCaptureScreenChanged(unsigned uScreenId); 215 int i_videoCaptureStart(void); 216 void i_videoCaptureStop(void); 217 void i_videoCaptureScreenChanged(unsigned uScreenId); 212 218 #endif 213 219 … … 509 515 510 516 #ifdef VBOX_WITH_VIDEOREC 517 VIDEORECCFG mVideoRecCfg; 511 518 VIDEORECCONTEXT *mpVideoRecCtx; 512 519 bool maVideoRecEnabled[SchemaDefs::MaxGuestMonitors];
Note:
See TracChangeset
for help on using the changeset viewer.