Changeset 26487 in vbox for trunk/include/VBox
- Timestamp:
- Feb 14, 2010 7:07:53 AM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 57656
- Location:
- trunk/include/VBox
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/HGSMI/HGSMIChannels.h
r22652 r26487 42 42 * to a free 16 bit numerical value. values are allocated in range 43 43 * [HGSMI_CH_STRING_FIRST;HGSMI_CH_STRING_LAST]. 44 * 44 * 45 45 */ 46 46 -
trunk/include/VBox/HostServices/VBoxOGLOp.h
r8155 r26487 56 56 OGL_CMD(op, 0, 0); \ 57 57 OGL_CMD_END(op); 58 58 59 59 #define VBOX_OGL_GEN_OP1(op, p1) \ 60 60 OGL_CMD(op, 1, sizeof(p1)); \ … … 576 576 OGL_CMD(op, 0); \ 577 577 gl##op(); 578 578 579 579 #define VBOX_OGL_GEN_OP1(op, Type1) \ 580 580 OGL_CMD(op, 1); \ … … 767 767 OGL_PARAM(Type1, p1); \ 768 768 pClient->lastretval = gl##op(p1); 769 769 770 770 #define VBOX_OGL_GEN_SYNC_OP2_RET(rettype, op, Type1, Type2) \ 771 771 OGL_CMD(op, 2); \ … … 1016 1016 /* OpenGL opcodes */ 1017 1017 /* Note: keep all three tables in sync! */ 1018 typedef enum 1018 typedef enum 1019 1019 { 1020 1020 VBOX_OGL_OP_Illegal = 0, … … 1891 1891 #endif 1892 1892 1893 static OPENGL_EXT OpenGLExtensions[] = 1893 static OPENGL_EXT OpenGLExtensions[] = 1894 1894 { 1895 1895 { "WGL_EXT_swap_control", "wglSwapIntervalEXT", VBOX_OGL_EXTENSION(wglSwapIntervalEXT), false }, -
trunk/include/VBox/HostServices/VBoxOpenGLSvc.h
r8155 r26487 125 125 */ 126 126 HGCMFunctionParameter cCommands; 127 127 128 128 /** 64bit, out: retval 129 129 * uint64_t return code of last command … … 164 164 */ 165 165 HGCMFunctionParameter pLastParam; 166 166 167 167 /** 64bit, out: retval 168 168 * uint64_t return code of last command -
trunk/include/VBox/cpumdis.h
r21217 r26487 62 62 #endif 63 63 64 65 66 67 -
trunk/include/VBox/pdmqueue.h
r26112 r26487 150 150 #endif 151 151 152 -
trunk/include/VBox/vmapi.h
r25838 r26487 429 429 #endif 430 430 431 -
trunk/include/VBox/vrdpapi.h
r23643 r26487 1018 1018 /** 1019 1019 * Query or set various information, on how the VRDP server operates, from or to the application. 1020 * 1020 * 1021 1021 * 1022 1022 * @param pvCallback The callback specific pointer. -
trunk/include/VBox/vusb.h
r26471 r26487 287 287 #define VUSB_DIR_TO_DEVICE 0x00 288 288 #define VUSB_DIR_TO_HOST 0x80 289 #define 289 #define VUSB_DIR_MASK 0x80 290 290 291 291 /**
Note:
See TracChangeset
for help on using the changeset viewer.