Changeset View
Changeset View
Standalone View
Standalone View
intern/ghost/GHOST_Types.h
| Show First 20 Lines • Show All 52 Lines • ▼ Show 20 Lines | |||||
| } GHOST_GLSettings; | } GHOST_GLSettings; | ||||
| typedef enum { | typedef enum { | ||||
| GHOST_glStereoVisual = (1 << 0), | GHOST_glStereoVisual = (1 << 0), | ||||
| GHOST_glDebugContext = (1 << 1), | GHOST_glDebugContext = (1 << 1), | ||||
| GHOST_glAlphaBackground = (1 << 2), | GHOST_glAlphaBackground = (1 << 2), | ||||
| } GHOST_GLFlags; | } GHOST_GLFlags; | ||||
| typedef enum GHOST_DialogOptions { | |||||
| GHOST_DialogWarning = (1 << 0), | |||||
| GHOST_DialogError = (1 << 1), | |||||
| } GHOST_DialogOptions; | |||||
| #ifdef _MSC_VER | #ifdef _MSC_VER | ||||
| typedef __int64 GHOST_TInt64; | typedef __int64 GHOST_TInt64; | ||||
| typedef unsigned __int64 GHOST_TUns64; | typedef unsigned __int64 GHOST_TUns64; | ||||
| #else | #else | ||||
| typedef long long GHOST_TInt64; | typedef long long GHOST_TInt64; | ||||
| typedef unsigned long long GHOST_TUns64; | typedef unsigned long long GHOST_TUns64; | ||||
| #endif | #endif | ||||
| ▲ Show 20 Lines • Show All 492 Lines • Show Last 20 Lines | |||||