- Timestamp:
- May 2, 2022 10:12:10 AM (3 years ago)
- Location:
- trunk/src/VBox/Main
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/Makefile.kmk
r94771 r94772 1066 1066 VBoxC_SOURCES += \ 1067 1067 $(VBoxAPIWrap_0_OUTDIR)/VBoxAPI.d \ 1068 src-all/CryptoUtils.cpp \1069 1068 src-all/DisplayPNGUtil.cpp \ 1070 1069 src-all/DisplayResampleImage.cpp \ -
trunk/src/VBox/Main/include/DisplayUtils.h
r93444 r94772 24 24 #include "VBox/com/string.h" 25 25 26 #include "CryptoUtils.h" 27 26 28 using namespace com; 27 29 … … 33 35 #define sSSMDisplayVer5 0x00010005 34 36 35 int readSavedGuestScreenInfo( const Utf8Str &strStateFilePath, uint32_t u32ScreenId,37 int readSavedGuestScreenInfo(SsmStream &refSsm, uint32_t u32ScreenId, 36 38 uint32_t *pu32OriginX, uint32_t *pu32OriginY, 37 39 uint32_t *pu32Width, uint32_t *pu32Height, uint16_t *pu16Flags); 38 40 39 int readSavedDisplayScreenshot( const Utf8Str &strStateFilePath, uint32_t u32Type, uint8_t **ppu8Data,41 int readSavedDisplayScreenshot(&refSsm, uint32_t u32Type, uint8_t **ppu8Data, 40 42 uint32_t *pcbData, uint32_t *pu32Width, uint32_t *pu32Height); 41 43 void freeSavedDisplayScreenshot(uint8_t *pu8Data); -
trunk/src/VBox/Main/src-all/DisplayUtils.cpp
r94763 r94772 23 23 #include <VBoxVideo.h> 24 24 25 int readSavedDisplayScreenshot( const Utf8Str &strStateFilePath, uint32_t u32Type, uint8_t **ppu8Data, uint32_t *pcbData,25 int readSavedDisplayScreenshot(SsmStream &refSsm, uint32_t u32Type, uint8_t **ppu8Data, uint32_t *pcbData, 26 26 uint32_t *pu32Width, uint32_t *pu32Height) 27 27 {
Note:
See TracChangeset
for help on using the changeset viewer.