Changeset 65099 in vbox for trunk/src/VBox/Additions
- Timestamp:
- Jan 4, 2017 12:05:31 PM (8 years ago)
- Location:
- trunk/src/VBox/Additions
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/VBoxCredProv/VBoxCredProvFactory.h
r62679 r65099 47 47 private: 48 48 LONG m_cRefs; 49 friend HRESULT VBoxCredentialProviderCreate(REFCLSID classID, REFIID interfaceID, void **ppv );49 friend HRESULT VBoxCredentialProviderCreate(REFCLSID classID, REFIID interfaceID, void **ppvInterface); 50 50 }; 51 51 #endif /* !___VBOX_CREDPROV_FACTORY_H___ */ -
trunk/src/VBox/Additions/WINNT/VBoxCredProv/VBoxCredProvProvider.h
r62679 r65099 55 55 __out BOOL *pfAutoLogonWithDefault); 56 56 IFACEMETHODIMP GetCredentialAt(DWORD dwIndex, 57 __out ICredentialProviderCredential **pp cpc);57 __out ICredentialProviderCredential **ppCredProvCredential); 58 58 /** @} */ 59 59 60 friend HRESULT VBoxCredProvProviderCreate(REFIID riid, __deref_out void **ppv );60 friend HRESULT VBoxCredProvProviderCreate(REFIID riid, __deref_out void **ppvInterface); 61 61 62 62 protected: -
trunk/src/VBox/Additions/WINNT/VBoxTray/VBoxDnD.cpp
r63479 r65099 122 122 * 123 123 * @return IPRT status code. 124 * @param pC ontextPointer to context to use.124 * @param pCtx Pointer to context to use. 125 125 */ 126 126 int VBoxDnDWnd::Initialize(PVBOXDNDCONTEXT pCtx) -
trunk/src/VBox/Additions/x11/VBoxClient/clipboard.cpp
r62883 r65099 79 79 * 80 80 * @returns VBox result code 81 * @param pCtx Our context information 81 82 * @param u32Format The format of the data being requested 82 83 * @retval ppv On success and if pcb > 0, this will point to a buffer … … 144 145 * Tell the host that new clipboard formats are available. 145 146 * 146 * @param u32Formats The formats to advertise 147 * @param pCtx Our context information 148 * @param u32Formats The formats to advertise 147 149 */ 148 150 void ClipReportX11Formats(VBOXCLIPBOARDCONTEXT *pCtx, uint32_t u32Formats) -
trunk/src/VBox/Additions/x11/VBoxClient/seamless-x11.cpp
r62883 r65099 72 72 * Initialise the guest and ensure that it is capable of handling seamless mode 73 73 * 74 * @param pHostCallback host callback. 74 75 * @returns true if it can handle seamless, false otherwise 75 76 */ … … 365 366 * Handle a configuration event in the seamless event thread by setting the new position. 366 367 * 367 * @param event the X11 event structure368 * @param hWin the window to be examined 368 369 */ 369 370 void SeamlessX11::doConfigureEvent(Window hWin) … … 387 388 * Handle a window shape change event in the seamless event thread. 388 389 * 389 * @param event the X11 event structure390 * @param hWin the window to be examined 390 391 */ 391 392 void SeamlessX11::doShapeEvent(Window hWin)
Note:
See TracChangeset
for help on using the changeset viewer.