Changeset 94773 in vbox for trunk/src/VBox
- Timestamp:
- May 2, 2022 10:13:10 AM (3 years ago)
- Location:
- trunk/src/VBox/Main
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/Makefile.kmk
r94772 r94773 1066 1066 VBoxC_SOURCES += \ 1067 1067 $(VBoxAPIWrap_0_OUTDIR)/VBoxAPI.d \ 1068 src-all/CryptoUtils.cpp \ 1068 1069 src-all/DisplayPNGUtil.cpp \ 1069 1070 src-all/DisplayResampleImage.cpp \ -
trunk/src/VBox/Main/include/DisplayUtils.h
r94772 r94773 24 24 #include "VBox/com/string.h" 25 25 26 #include "CryptoUtils.h"27 28 26 using namespace com; 29 27 … … 35 33 #define sSSMDisplayVer5 0x00010005 36 34 37 int readSavedGuestScreenInfo( SsmStream &refSsm, uint32_t u32ScreenId,35 int readSavedGuestScreenInfo(const Utf8Str &strStateFilePath, uint32_t u32ScreenId, 38 36 uint32_t *pu32OriginX, uint32_t *pu32OriginY, 39 37 uint32_t *pu32Width, uint32_t *pu32Height, uint16_t *pu16Flags); 40 38 41 int readSavedDisplayScreenshot( &refSsm, uint32_t u32Type, uint8_t **ppu8Data,39 int readSavedDisplayScreenshot(const Utf8Str &strStateFilePath, uint32_t u32Type, uint8_t **ppu8Data, 42 40 uint32_t *pcbData, uint32_t *pu32Width, uint32_t *pu32Height); 43 41 void freeSavedDisplayScreenshot(uint8_t *pu8Data); -
trunk/src/VBox/Main/src-all/DisplayUtils.cpp
r94772 r94773 23 23 #include <VBoxVideo.h> 24 24 25 int readSavedDisplayScreenshot( SsmStream &refSsm, uint32_t u32Type, uint8_t **ppu8Data, uint32_t *pcbData,25 int readSavedDisplayScreenshot(const Utf8Str &strStateFilePath, uint32_t u32Type, uint8_t **ppu8Data, uint32_t *pcbData, 26 26 uint32_t *pu32Width, uint32_t *pu32Height) 27 27 { -
trunk/src/VBox/Main/testcase/Makefile.kmk
r93404 r94773 38 38 tstBstr \ 39 39 tstGuid \ 40 tstUnattendedScript 40 tstUnattendedScript \ 41 tstVBoxCrypto 41 42 PROGRAMS.linux += \ 42 43 $(if $(VBOX_WITH_USB),tstUSBProxyLinux,) … … 299 300 300 301 302 # 303 # tstVBoxCrypto 304 # 305 tstVBoxCrypto_TEMPLATE = VBOXMAINCLIENTTSTEXE 306 tstVBoxCrypto_SOURCES = tstVBoxCrypto.cpp 307 308 301 309 302 310 # generate rules.
Note:
See TracChangeset
for help on using the changeset viewer.