From 3fcb8cd1a66b409ae3a8e9ba4941ec2c751ef856 Mon Sep 17 00:00:00 2001 From: Jonas Kümmerlin Date: Sun, 31 May 2020 20:59:39 +0200 Subject: panel: implement naming convention with underscores --- alf/alf.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'alf/alf.h') diff --git a/alf/alf.h b/alf/alf.h index e8a8864..321a56c 100644 --- a/alf/alf.h +++ b/alf/alf.h @@ -503,7 +503,7 @@ HWND ALF_AddPanel(HWND parent, WORD id, int x, int y); void -ALF_PanelSetVTable(HWND panel, const ALFPanelVTable *vtbl, void *closure); +ALF_Panel_SetVTable(HWND panel, const ALFPanelVTable *vtbl, void *closure); LRESULT ALF_Panel_DefWindowProc(HWND panel, UINT msg, WPARAM wparam, LPARAM lparam); @@ -512,10 +512,10 @@ void ALF_Panel_DefPaint(HWND panel, HDC hDC, RECT *rcPaint); DWORD -ALF_PanelEdge(HWND panel); +ALF_Panel_Edge(HWND panel); void -ALF_PanelSetEdge(HWND panel, DWORD edge); +ALF_Panel_SetEdge(HWND panel, DWORD edge); // tab control HWND -- cgit v1.2.3