Changeset 94742 in vbox for trunk/src/VBox/Main/include/ConsoleImpl.h
- Timestamp:
- Apr 28, 2022 5:59:53 PM (3 years ago)
- svn:sync-xref-src-repo-rev:
- 151124
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/ConsoleImpl.h
r94660 r94742 76 76 # include <VBox/vrdpusb.h> 77 77 #endif 78 #include <VBox/VBoxCryptoIf.h> 78 79 79 80 #if defined(VBOX_WITH_GUEST_PROPS) || defined(VBOX_WITH_SHARED_CLIPBOARD) \ … … 322 323 HRESULT i_setDiskEncryptionKeys(const Utf8Str &strCfg); 323 324 325 HRESULT i_retainCryptoIf(PCVBOXCRYPTOIF *ppCryptoIf); 326 HRESULT i_releaseCryptoIf(PCVBOXCRYPTOIF pCryptoIf); 324 327 325 328 #ifdef VBOX_WITH_GUEST_PROPS … … 1086 1089 Bstr mstrUuid; 1087 1090 1091 /** @name Members related to the cryptographic support interface. 1092 * @{ */ 1093 /** The loaded module handle if loaded. */ 1094 RTLDRMOD mhLdrModCrypto; 1095 /** Reference counter tracking how many users of the cryptographic support 1096 * are there currently. */ 1097 volatile uint32_t mcRefsCrypto; 1098 /** Pointer to the cryptographic support interface. */ 1099 PCVBOXCRYPTOIF mpCryptoIf; 1100 /** @} */ 1101 1088 1102 #ifdef VBOX_WITH_DRAG_AND_DROP 1089 1103 HGCMSVCEXTHANDLE m_hHgcmSvcExtDragAndDrop;
Note:
See TracChangeset
for help on using the changeset viewer.