Changeset 104286 in vbox for trunk/src/VBox/Main/include
- Timestamp:
- Apr 11, 2024 1:56:27 AM (12 months ago)
- svn:sync-xref-src-repo-rev:
- 162757
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/ConsoleImpl.h
r101477 r104286 1013 1013 /** @name Encrypted log interface 1014 1014 * @{ */ 1015 static DECLCALLBACK(int) i_logEncryptedOpen(PCRTLOGOUTPUTIF pIf, void *pvUser, const char *pszFilename, uint32_t fFlags); 1015 static DECLCALLBACK(int) i_logEncryptedDirCtxOpen(PCRTLOGOUTPUTIF pIf, void *pvUser, const char *pszFilename, void **pvDirCtx); 1016 static DECLCALLBACK(int) i_logEncryptedDirCtxClose(PCRTLOGOUTPUTIF pIf, void *pvUser, void *pvDirCtx); 1017 static DECLCALLBACK(int) i_logEncryptedDelete(PCRTLOGOUTPUTIF pIf, void *pvUser, void *pvDirCtx, const char *pszFilename); 1018 static DECLCALLBACK(int) i_logEncryptedRename(PCRTLOGOUTPUTIF pIf, void *pvUser, void *pvDirCtx, 1019 const char *pszFilenameOld, const char *pszFilenameNew, uint32_t fFlags); 1020 static DECLCALLBACK(int) i_logEncryptedOpen(PCRTLOGOUTPUTIF pIf, void *pvUser, void *pvDirCtx, const char *pszFilename, uint32_t fFlags); 1016 1021 static DECLCALLBACK(int) i_logEncryptedClose(PCRTLOGOUTPUTIF pIf, void *pvUser); 1017 static DECLCALLBACK(int) i_logEncryptedDelete(PCRTLOGOUTPUTIF pIf, void *pvUser, const char *pszFilename);1018 static DECLCALLBACK(int) i_logEncryptedRename(PCRTLOGOUTPUTIF pIf, void *pvUser, const char *pszFilenameOld,1019 const char *pszFilenameNew, uint32_t fFlags);1020 1022 static DECLCALLBACK(int) i_logEncryptedQuerySize(PCRTLOGOUTPUTIF pIf, void *pvUser, uint64_t *pcbSize); 1021 1023 static DECLCALLBACK(int) i_logEncryptedWrite(PCRTLOGOUTPUTIF pIf, void *pvUser, const void *pvBuf, 1022 1024 size_t cbWrite, size_t *pcbWritten); 1023 1025 static DECLCALLBACK(int) i_logEncryptedFlush(PCRTLOGOUTPUTIF pIf, void *pvUser); 1026 /** The logging output interface for encrypted logs. */ 1027 static RTLOGOUTPUTIF const s_ConsoleEncryptedLogOutputIf; 1024 1028 /** @} */ 1025 1029 #endif … … 1215 1219 /** The file handle of the encrypted log. */ 1216 1220 RTVFSFILE m_hVfsFileLog; 1217 /** The logging output interface for encrypted logs. */1218 RTLOGOUTPUTIF m_LogOutputIf;1219 1221 /** The log file key ID. */ 1220 1222 Utf8Str m_strLogKeyId;
Note:
See TracChangeset
for help on using the changeset viewer.