儲存庫 vbox 的更動 86900
- 時間撮記:
- 2020-11-17 上午04:18:51 (4 年 以前)
- svn:sync-xref-src-repo-rev:
- 141373
- 位置:
- trunk/src/VBox/Devices/Graphics/vmsvga_include
- 檔案:
-
- 新增 3 筆資料
- 修改 2 筆資料
圖例:
- 未更動
- 新增
- 刪除
-
trunk/src/VBox/Devices/Graphics/vmsvga_include/svga_reg.h
r86898 r86900 33 33 #ifndef _SVGA_REG_H_ 34 34 #define _SVGA_REG_H_ 35 #include <linux/pci_ids.h>36 35 37 36 #define INCLUDE_ALLOW_MODULE -
trunk/src/VBox/Devices/Graphics/vmsvga_include/svga_types.h
r86898 r86900 24 24 * 25 25 **********************************************************/ 26 #ifndef _ VM_BASIC_TYPES_H_27 #define _ VM_BASIC_TYPES_H_28 #include < linux/kernel.h>26 #ifndef _SVGA_TYPES_H_ 27 #define _SVGA_TYPES_H_ 28 #include <iprt/types.h> 29 29 30 typedef u32 uint32; 31 typedef s32 int32; 32 typedef u64 uint64; 33 typedef u16 uint16; 34 typedef s16 int16; 35 typedef u8 uint8; 36 typedef s8 int8; 30 typedef int64_t int64; 31 typedef uint64_t uint64; 32 33 typedef int32_t int32; 34 typedef uint32_t uint32; 35 36 typedef int16_t int16; 37 typedef uint16_t uint16; 38 39 typedef int8_t int8; 40 typedef uint8_t uint8; 37 41 38 42 typedef uint64 PA; … … 43 47 typedef bool Bool; 44 48 45 #define MAX_UINT64 U 64_MAX46 #define MAX_UINT32 U 32_MAX49 #define MAX_UINT64 UINT64_MAX 50 #define MAX_UINT32 UINT32_MAX 47 51 #define MAX_UINT16 U16_MAX 48 52
注意:
瀏覽 TracChangeset
來幫助您使用更動檢視器