Changeset 68638 in vbox
- Timestamp:
- Sep 5, 2017 1:30:52 PM (7 years ago)
- Location:
- trunk/src/VBox/Additions/common
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxGuest/VBoxGuest-solaris.c
r68581 r68638 70 70 static int vgdrvSolarisWrite(dev_t Dev, struct uio *pUio, cred_t *pCred); 71 71 static int vgdrvSolarisIOCtl(dev_t Dev, int iCmd, intptr_t pArg, int Mode, cred_t *pCred, int *pVal); 72 static int vgdrvSolarisIOCtlSlow(PVBOXGUESTSESSION pSession, int iCmd, int Mode, intptr_t pArgs);72 static int vgdrvSolarisIOCtlSlow(PVBOXGUESTSESSION pSession, int iCmd, int Mode, intptr_t iArgs); 73 73 static int vgdrvSolarisPoll(dev_t Dev, short fEvents, int fAnyYet, short *pReqEvents, struct pollhead **ppPollHead); 74 74 … … 591 591 * @param Dev Device number 592 592 * @param iCmd Operation identifier 593 * @param pArgArguments from user to driver593 * @param iArgs Arguments from user to driver 594 594 * @param Mode Information bitfield (read/write, address space etc.) 595 595 * @param pCred User credentials … … 598 598 * @return corresponding solaris error code. 599 599 */ 600 static int vgdrvSolarisIOCtl(dev_t Dev, int iCmd, intptr_t pArgs, int Mode, cred_t *pCred, int *pVal)600 static int vgdrvSolarisIOCtl(dev_t Dev, int iCmd, intptr_t iArgs, int Mode, cred_t *pCred, int *pVal) 601 601 { 602 602 /* … … 626 626 } 627 627 628 return vgdrvSolarisIOCtlSlow(pSession, iCmd, Mode, pArgs);628 return vgdrvSolarisIOCtlSlow(pSession, iCmd, Mode, iArgs); 629 629 } 630 630 -
trunk/src/VBox/Additions/common/VBoxGuest/VBoxGuest.cpp
r68623 r68638 3149 3149 * @param fNotMask The capabilities to remove. Ignored in 3150 3150 * VBOXGUESTCAPSACQUIRE_FLAGS_CONFIG_ACQUIRE_MODE. 3151 * @param enmFlagsConfusing operation modifier.3151 * @param fFlags Confusing operation modifier. 3152 3152 * VBOXGUESTCAPSACQUIRE_FLAGS_NONE means to both 3153 3153 * configure and acquire/release the capabilities. -
trunk/src/VBox/Additions/common/VBoxGuestLib/VBoxGuestR3LibClipboard.cpp
r68527 r68638 70 70 * @returns VBox status code. 71 71 * @param idClient The client id returned by VbglR3ClipboardConnect(). 72 * @param p MsgWhere to store the message id.72 * @param pidMsg Where to store the message id. 73 73 * @param pfFormats Where to store the format(s) the message applies to. 74 74 */
Note:
See TracChangeset
for help on using the changeset viewer.