Browse Source

sys/windows: add GetDCBrushColor

hikari 3 years ago
parent
commit
40bea95fb0
1 changed files with 1 additions and 0 deletions
  1. 1 0
      core/sys/windows/gdi32.odin

+ 1 - 0
core/sys/windows/gdi32.odin

@@ -63,6 +63,7 @@ foreign gdi32 {
 	SwapBuffers :: proc(HDC) -> BOOL ---
 	SwapBuffers :: proc(HDC) -> BOOL ---
 
 
 	SetDCBrushColor :: proc(hdc: HDC, color: COLORREF) -> COLORREF ---
 	SetDCBrushColor :: proc(hdc: HDC, color: COLORREF) -> COLORREF ---
+	GetDCBrushColor :: proc(hdc: HDC) -> COLORREF ---
 	PatBlt :: proc(hdc: HDC, x, y, w, h: c_int, rop: DWORD) -> BOOL ---
 	PatBlt :: proc(hdc: HDC, x, y, w, h: c_int, rop: DWORD) -> BOOL ---
 }
 }