Changeset 34906 in vbox for trunk/src/VBox/Main/include
- Timestamp:
- Dec 9, 2010 4:29:49 PM (14 years ago)
- Location:
- trunk/src/VBox/Main/include
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/ConsoleImpl.h
r34587 r34906 168 168 Display *getDisplay() const { return mDisplay; } 169 169 MachineDebugger *getMachineDebugger() const { return mDebugger; } 170 AudioSniffer *getAudioSniffer() const { return mAudioSniffer; } 170 171 171 172 const ComPtr<IMachine> &machine() const { return mMachine; } -
trunk/src/VBox/Main/include/ConsoleVRDPServer.h
r34563 r34906 128 128 void QueryInfo (uint32_t index, void *pvBuffer, uint32_t cbBuffer, uint32_t *pcbOut) const; 129 129 130 int SendAudioInputBegin(void **ppvUserCtx, 131 void *pvContext, 132 uint32_t cSamples, 133 uint32_t iSampleHz, 134 uint32_t cChannels, 135 uint32_t cBits); 136 137 void SendAudioInputEnd(void *pvUserCtx); 138 130 139 private: 131 140 /* Note: This is not a ComObjPtr here, because the ConsoleVRDPServer object … … 135 144 136 145 HVRDESERVER mhServer; 146 int mServerInterfaceVersion; 137 147 138 148 static int loadVRDPLibrary (const char *pszLibraryName); … … 143 153 static PFNVRDECREATESERVER mpfnVRDECreateServer; 144 154 145 static VRDEENTRYPOINTS_1 *mpEntryPoints; 146 static VRDECALLBACKS_1 mCallbacks; 155 static VRDEENTRYPOINTS_3 mEntryPoints; 156 static VRDEENTRYPOINTS_3 *mpEntryPoints; 157 static VRDECALLBACKS_3 mCallbacks; 147 158 148 159 static DECLCALLBACK(int) VRDPCallbackQueryProperty (void *pvCallback, uint32_t index, void *pvBuffer, uint32_t cbBuffer, uint32_t *pcbOut); … … 158 169 static DECLCALLBACK(void) VRDPCallbackInput (void *pvCallback, int type, const void *pvInput, unsigned cbInput); 159 170 static DECLCALLBACK(void) VRDPCallbackVideoModeHint (void *pvCallback, unsigned cWidth, unsigned cHeight, unsigned cBitsPerPixel, unsigned uScreenId); 171 static DECLCALLBACK(void) VRDECallbackAudioIn (void *pvCallback, void *pvCtx, uint32_t u32ClientId, uint32_t u32Event, const void *pvData, uint32_t cbData); 160 172 161 173 bool m_fGuestWantsAbsolute; … … 212 224 PAUTHENTRY2 mpfnAuthEntry2; 213 225 PAUTHENTRY3 mpfnAuthEntry3; 226 227 uint32_t volatile mu32AudioInputClientId; 214 228 }; 215 229
Note:
See TracChangeset
for help on using the changeset viewer.