From 2f6812f82665ac9786dd2ec86d3e536fb01a861b Mon Sep 17 00:00:00 2001 From: Jonas Kümmerlin Date: Sun, 19 Apr 2020 15:47:54 +0200 Subject: window: add paint vfunc --- alf/alf.h | 1 + 1 file changed, 1 insertion(+) (limited to 'alf/alf.h') diff --git a/alf/alf.h b/alf/alf.h index a23eb8c..4102a1e 100644 --- a/alf/alf.h +++ b/alf/alf.h @@ -22,6 +22,7 @@ typedef struct { LRESULT (*command)(void * /*closure*/, HWND /*window*/, WORD /*notificationcode*/, WORD /*sourceid*/, HWND /*control*/); LRESULT (*notify)(void * /*closure*/, HWND /*window*/, WPARAM /*sourceid*/, NMHDR *); BOOL (*pretranslatemessage)(void * /*closure*/, HWND /*window*/, MSG * /*message*/); + void (*paint)(void * /*closure*/, HWND, HDC, RECT *); } ALFWindowVTable; typedef struct { -- cgit v1.2.3