Changeset 105436 in vbox for trunk/src/VBox/Main
- Timestamp:
- Jul 22, 2024 9:44:06 PM (4 months ago)
- Location:
- trunk/src/VBox/Main
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/Recording.h
r105337 r105436 36 36 37 37 #include "RecordingStream.h" 38 #include "ProgressImpl.h"39 38 40 39 class Console; 40 class Progress; 41 41 42 42 /** No flags specified. */ … … 189 189 int progressCreate(const settings::RecordingSettings &Settings, ComObjPtr<Progress> &pProgress); 190 190 int progressNotifyComplete(HRESULT hrc = S_OK, IVirtualBoxErrorInfo *pErrorInfo = NULL); 191 int progressSet(uint32_t uOp, const Bstr &strDesc);191 int progressSet(uint32_t uOp, const com::Bstr &strDesc); 192 192 int progressSet(uint64_t msTimestamp); 193 193 -
trunk/src/VBox/Main/src-client/Recording.cpp
r105337 r105436 56 56 57 57 #include "ConsoleImpl.h" 58 #include "ProgressImpl.h" 58 59 #include "Recording.h" 59 60 #include "RecordingInternals.h" -
trunk/src/VBox/Main/testcase/Makefile.kmk
r105266 r105436 194 194 # Note! VBOX_MAIN_APIWRAPPER_GEN_HDRS is only defined if kmk is executed a 195 195 # parent directory. Since the rules for generating the files listed by 196 # the variable lives in the parent makefile, this is not a problem. 196 # the variable lives in the parent makefile, as does the rules for making 197 # VirtualBox.h, so it's not really a problem. 197 198 # 198 199 tstCollector_TEMPLATE = VBoxMainClientTstExe … … 213 214 # tstGuestCtrlContextID 214 215 # 216 # Note! See notes on tstCollector. 217 # 215 218 tstGuestCtrlContextID_TEMPLATE = VBoxMainClientTstExe 216 tstGuestCtrlContextID_INTERMEDIATES 219 tstGuestCtrlContextID_INTERMEDIATES = $(VBOX_MAIN_APIWRAPPER_GEN_HDRS) 217 220 tstGuestCtrlContextID_DEFS += VBOX_WITH_HGCM VBOX_WITH_GUEST_CONTROL VBOX_GUESTCTRL_TEST_CASE 218 221 tstGuestCtrlContextID_SOURCES = \ … … 226 229 # tstGuestCtrlParseBuffer 227 230 # 231 # Note! See notes on tstCollector. 232 # 228 233 tstGuestCtrlParseBuffer_TEMPLATE = VBoxMainClientTstExe 229 tstGuestCtrlParseBuffer_INTERMEDIATES 234 tstGuestCtrlParseBuffer_INTERMEDIATES = $(VBOX_MAIN_APIWRAPPER_GEN_HDRS) 230 235 tstGuestCtrlParseBuffer_DEFS += VBOX_WITH_HGCM VBOX_WITH_GSTCTL_TOOLBOX_SUPPORT VBOX_WITH_GUEST_CONTROL VBOX_GUESTCTRL_TEST_CASE 231 236 tstGuestCtrlParseBuffer_SOURCES = \ … … 238 243 # 239 244 # tstGuestCtrlPaths 245 # 246 # Note! See notes on tstCollector. 240 247 # 241 248 tstGuestCtrlPaths_TEMPLATE = VBoxMainClientTstExe … … 258 265 # 259 266 # tstUSBProxyLinux 267 # 268 # Note! See notes on tstCollector. 260 269 # 261 270 tstUSBProxyLinux_TEMPLATE = VBoxMainClientTstExe … … 305 314 ../src-client/RecordingUtils.cpp 306 315 tstRecording_INCS = \ 307 ../include \ 308 $(VBOX_MAIN_APIWRAPPER_INCS) 316 ../include 309 317 310 318 # 311 319 # tstSettings 312 320 # 321 # Note! See notes on tstCollector. 322 # 313 323 tstSettings_TEMPLATE = VBoxMainClientTstExe 324 tstSettings_INTERMEDIATES = \ 325 $(VBOX_MAIN_APIWRAPPER_GEN_HDRS) \ 326 $(VBOX_XML_SCHEMADEFS_H) 314 327 tstSettings_INCS = \ 315 328 ../include \ … … 337 350 # 338 351 # tstUnattendedScript 352 # 353 # Note! See notes on tstCollector. 339 354 # 340 355 tstUnattendedScript_TEMPLATE = VBoxMainClientTstExe
Note:
See TracChangeset
for help on using the changeset viewer.