Changeset 6494 in vbox for trunk/src/VBox/Additions
- Timestamp:
- Jan 25, 2008 6:11:27 AM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 27501
- Location:
- trunk/src/VBox/Additions
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxGuestLib/Makefile.kmk
r6458 r6494 105 105 VBoxGuestR3LibSeamless.cpp \ 106 106 VBoxGuestR3LibTime.cpp \ 107 VBoxGuestR3LibVideo.cpp 107 108 108 109 -
trunk/src/VBox/Additions/common/VBoxGuestLib/VBoxGuestR3LibMouse.cpp
r6470 r6494 23 23 24 24 25 /** 26 * Retrieve mouse co-ordinate information from the host. 27 * 28 * @returns VBox status code. 29 * 30 * @param pfFeatures Where to store the mouse features. 31 * @param px Where to store the X co-ordinate. 32 * @param py Where to store the Y co-ordinate. 33 */ 25 34 VBGLR3DECL(int) VbglR3GetMouseStatus(uint32_t *pfFeatures, uint32_t *px, uint32_t *py) 26 35 { … … 44 53 45 54 55 /** 56 * Send mouse features to the host. 57 * 58 * @returns VBox status code. 59 * 60 * @param fFeatures Supported mouse pointer features. 61 */ 46 62 VBGLR3DECL(int) VbglR3SetMouseStatus(uint32_t fFeatures) 47 63 { -
trunk/src/VBox/Additions/x11/xgraphics/Makefile.kmk
r6484 r6494 190 190 vboxvideo_drv_SOURCES = \ 191 191 vboxvideo_70.c \ 192 vboxutils .c192 vboxutils-new.c 193 193 vboxvideo_drv_LIBS = \ 194 194 $(VBOX_LIB_VBGL_R3) \ -
trunk/src/VBox/Additions/x11/xmouse/VBoxUtils.c
r6259 r6494 1 1 /** @file 2 2 * 3 * VirtualBox LinuxAdditions mouse driver utility functions3 * VirtualBox X11 Additions mouse driver utility functions 4 4 */ 5 5
Note:
See TracChangeset
for help on using the changeset viewer.