- Timestamp:
- Nov 29, 2024 1:28:35 PM (2 months ago)
- Location:
- trunk/src/VBox/Main
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/Recording.h
r106061 r107188 224 224 /** Current operation of progress. Set to 0 if not started yet, >= 1 if started. */ 225 225 ULONG m_ulCurOp; 226 /** Number of progress operations. Always >= 1 . */226 /** Number of progress operations. Always >= 1 (if initialized). */ 227 227 ULONG m_cOps; 228 228 /** The progress object assigned to this context. -
trunk/src/VBox/Main/src-client/Recording.cpp
r106061 r107188 185 185 : m_pConsole(NULL) 186 186 , m_enmState(RECORDINGSTS_UNINITIALIZED) 187 , m_ulCurOp(0) 188 , m_cOps(0) 189 , m_fShutdown(false) 187 190 , m_cStreamsEnabled(0) 191 , m_tsStartMs(0) 188 192 { 189 193 int vrc = RTCritSectInit(&m_CritSect);
Note:
See TracChangeset
for help on using the changeset viewer.