diff options
Diffstat (limited to 'Public/Developer/System.Core/Sources/Window.c')
| -rw-r--r-- | Public/Developer/System.Core/Sources/Window.c | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/Public/Developer/System.Core/Sources/Window.c b/Public/Developer/System.Core/Sources/Window.c index 2b589402..b68c1afb 100644 --- a/Public/Developer/System.Core/Sources/Window.c +++ b/Public/Developer/System.Core/Sources/Window.c @@ -59,4 +59,12 @@ CA_EXTERN_C Int32Type WmMoveWindow(WindowPort* id, WmPoint where) { id->windowMoving = True; return 0; -}
\ No newline at end of file +} + +/// Colors! + +CA_EXTERN_C const ColorRef kRgbRed = 0x000000FF; +CA_EXTERN_C const ColorRef kRgbGreen = 0x0000FF00; +CA_EXTERN_C const ColorRef kRgbBlue = 0x00FF0000; +CA_EXTERN_C const ColorRef kRgbBlack = 0x00000000; +CA_EXTERN_C const ColorRef kRgbWhite = 0xFFFFFFFF; |
