factor/library/windows/gdi32-constants.factor

31 lines
862 B
Factor

! Copyright (C) 2005, 2006 Doug Coleman.
! See http://factor.sf.net/license.txt for BSD license.
USING: alien kernel errors ;
IN: win32-api
LIBRARY: gdi32
! Stock Logical Objects
: WHITE_BRUSH 0 ; inline
: LTGRAY_BRUSH 1 ; inline
: GRAY_BRUSH 2 ; inline
: DKGRAY_BRUSH 3 ; inline
: BLACK_BRUSH 4 ; inline
: NULL_BRUSH 5 ; inline
: HOLLOW_BRUSH NULL_BRUSH ; inline
: WHITE_PEN 6 ; inline
: BLACK_PEN 7 ; inline
: NULL_PEN 8 ; inline
: OEM_FIXED_FONT 10 ; inline
: ANSI_FIXED_FONT 11 ; inline
: ANSI_VAR_FONT 12 ; inline
: SYSTEM_FONT 13 ; inline
: DEVICE_DEFAULT_FONT 14 ; inline
: DEFAULT_PALETTE 15 ; inline
: SYSTEM_FIXED_FONT 16 ; inline
: DEFAULT_GUI_FONT 17 ; inline
: DC_BRUSH 18 ; inline
: DC_PEN 19 ; inline