Changeset 75307 in vbox for trunk/src/VBox/Main/include
- Timestamp:
- Nov 7, 2018 1:56:14 PM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 126417
- Location:
- trunk/src/VBox/Main/include
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/CaptureScreenSettingsImpl.h
r75279 r75307 103 103 // internal methods 104 104 bool i_canChangeSettings(); 105 int i_getDefaultCaptureFile(Utf8Str &strFile); 105 int i_getDefaultFileName(Utf8Str &strFile); 106 int i_initInternal(); 106 107 107 108 private: -
trunk/src/VBox/Main/include/CaptureSettingsImpl.h
r75286 r75307 26 26 { 27 27 struct CaptureSettings; 28 struct CaptureScreenSettings; 28 29 } 29 30 … … 57 58 private: 58 59 60 int i_addScreen(uint32_t uScreenId, const settings::CaptureScreenSettings &data); 61 62 private: 63 59 64 // wrapped ICaptureSettings properties 60 65 HRESULT getEnabled(BOOL *enabled); -
trunk/src/VBox/Main/include/MachineImpl.h
r75251 r75307 494 494 void i_setModified(uint32_t fl, bool fAllowStateModification = true); 495 495 void i_setModifiedLock(uint32_t fl, bool fAllowStateModification = true); 496 497 MachineState_T i_getMachineState() const { return mData->mMachineState; } 496 498 497 499 bool i_isStateModificationAllowed() const { return mData->m_fAllowStateModification; } -
trunk/src/VBox/Main/include/VideoRec.h
r75251 r75307 180 180 int Destroy(void); 181 181 182 int Start(void); 183 int Stop(void); 184 182 185 int SendAudioFrame(const void *pvData, size_t cbData, uint64_t uTimestampMs); 183 186 int SendVideoFrame(uint32_t uScreen, … … 196 199 197 200 int createInternal(const settings::CaptureSettings &a_Settings); 201 int startInternal(void); 202 int stopInternal(void); 198 203 199 204 int destroyInternal(void); -
trunk/src/VBox/Main/include/VideoRecStream.h
r75254 r75307 130 130 protected: 131 131 132 int open( void);132 int open(const settings::CaptureScreenSettings &Settings); 133 133 int close(void); 134 134
Note:
See TracChangeset
for help on using the changeset viewer.