Changeset 7133 in vbox for trunk/include/VBox
- Timestamp:
- Feb 25, 2008 6:20:27 PM (17 years ago)
- Location:
- trunk/include/VBox
- Files:
-
- 13 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/VRDPOrders.h
r7028 r7133 27 27 #ifndef ___VBox_vrdporders_h 28 28 #define ___VBox_vrdporders_h 29 30 #include <iprt/types.h> 29 31 30 32 /* … … 251 253 uint32_t o32NextGlyph; 252 254 uint64_t u64Handle; 253 255 254 256 /* The glyph origin position on the screen. */ 255 257 int16_t x; 256 258 int16_t y; 257 259 258 260 /* The glyph bitmap dimensions. Note w == h == 0 for the space character. */ 259 261 uint16_t w; … … 263 265 int16_t xOrigin; 264 266 int16_t yOrigin; 265 267 266 268 /* 1BPP bitmap. Rows are byte aligned. Size is (((w + 7)/8) * h + 3) & ~3. */ 267 269 uint8_t au8Bitmap[1]; -
trunk/include/VBox/cpum.h
r7097 r7133 41 41 * Selector hidden registers. 42 42 */ 43 typedef struct CPUMSELREGHID DEN43 typedef struct CPUMSELREGHID 44 44 { 45 45 /** Base register. */ … … 52 52 X86DESCATTR Attr; 53 53 } CPUMSELREGHID; 54 /** Pointer to selector hidden registers. */55 typedef CPUMSELREGHID *PCPUMSELREGHID;56 /** Pointer to const selector hidden registers. */57 typedef const CPUMSELREGHID *PCCPUMSELREGHID;58 54 59 55 … … 166 162 167 163 } CPUMCTXCORE; 168 /** Pointer to CPU context core. */169 typedef CPUMCTXCORE *PCPUMCTXCORE;170 /** Pointer to const CPU context core. */171 typedef const CPUMCTXCORE *PCCPUMCTXCORE;172 164 #pragma pack() 165 173 166 174 167 /** … … 323 316 } CPUMCTX; 324 317 #pragma pack() 325 /** Pointer to CPUMCTX. */326 typedef CPUMCTX *PCPUMCTX;327 318 328 319 /** -
trunk/include/VBox/csam.h
r5999 r7133 29 29 #include <VBox/cdefs.h> 30 30 #include <VBox/types.h> 31 #include <VBox/cpum.h>32 31 #include <VBox/em.h> 33 32 … … 230 229 * @param pInstrGC Instruction pointer 231 230 */ 232 CSAMR3DECL(int) CSAMR3CheckCodeEx(PVM pVM, RTSEL Sel, CPUMSELREGHID *pHiddenSel, RTGCPTR pInstrGC);231 CSAMR3DECL(int) CSAMR3CheckCodeEx(PVM pVM, RTSEL Sel, PCPUMSELREGHID pHiddenSel, RTGCPTR pInstrGC); 233 232 234 233 /** -
trunk/include/VBox/em.h
r6210 r7133 30 30 #include <VBox/types.h> 31 31 #include <VBox/trpm.h> 32 #include <VBox/cpum.h>33 32 #include <VBox/dis.h> 34 33 -
trunk/include/VBox/hwacc_svm.h
r6243 r7133 29 29 #include <VBox/types.h> 30 30 #include <VBox/err.h> 31 #include <VBox/cpum.h>32 31 #include <iprt/assert.h> 33 32 #include <iprt/asm.h> -
trunk/include/VBox/hwacc_vmx.h
r5999 r7133 29 29 #include <VBox/types.h> 30 30 #include <VBox/err.h> 31 #include <VBox/cpum.h>32 31 #include <iprt/assert.h> 33 32 #include <iprt/asm.h> -
trunk/include/VBox/iom.h
r5999 r7133 29 29 #include <VBox/cdefs.h> 30 30 #include <VBox/types.h> 31 #include <VBox/cpum.h>32 31 #include <VBox/dis.h> 33 32 -
trunk/include/VBox/patm.h
r5999 r7133 29 29 #include <VBox/cdefs.h> 30 30 #include <VBox/types.h> 31 #include <VBox/cpum.h>32 31 #include <VBox/dis.h> 33 32 -
trunk/include/VBox/pgm.h
r6915 r7133 30 30 #include <VBox/types.h> 31 31 #include <VBox/sup.h> 32 #include <VBox/cpum.h>33 32 #include <VBox/vmapi.h> 33 #include <VBox/x86.h> 34 34 35 35 __BEGIN_DECLS -
trunk/include/VBox/selm.h
r5999 r7133 29 29 #include <VBox/cdefs.h> 30 30 #include <VBox/types.h> 31 #include <VBox/ cpum.h>31 #include <VBox/x86.h> 32 32 33 33 -
trunk/include/VBox/trpm.h
r5999 r7133 29 29 #include <VBox/cdefs.h> 30 30 #include <VBox/types.h> 31 #include <VBox/ cpum.h>31 #include <VBox/x86.h> 32 32 33 33 -
trunk/include/VBox/types.h
r7072 r7133 174 174 /** SSM Operation handle. */ 175 175 typedef struct SSMHANDLE *PSSMHANDLE; 176 177 /** Pointer to a CPUMCTX. */ 178 typedef struct CPUMCTX *PCPUMCTX; 179 /** Pointer to a const CPUMCTX. */ 180 typedef const struct CPUMCTX *PCCPUMCTX; 181 182 /** Pointer to a CPU context core. */ 183 typedef struct CPUMCTXCORE *PCPUMCTXCORE; 184 /** Pointer to a const CPU context core. */ 185 typedef const struct CPUMCTXCORE *PCCPUMCTXCORE; 186 187 /** Pointer to selector hidden registers. */ 188 typedef struct CPUMSELREGHID *PCPUMSELREGHID; 189 /** Pointer to const selector hidden registers. */ 190 typedef const struct CPUMSELREGHID *PCCPUMSELREGHID; 176 191 177 192 /** @} */ -
trunk/include/VBox/vmapi.h
r6835 r7133 29 29 #include <VBox/cdefs.h> 30 30 #include <VBox/types.h> 31 #include <VBox/cpum.h>32 31 #include <VBox/stam.h> 33 32 #include <VBox/cfgm.h>
Note:
See TracChangeset
for help on using the changeset viewer.