Release 960428
[wine/multimedia.git] / include / relay32.h
blob1eb26929f1b97de5b7c11b5b2256c19cf1edae74
1 /*
2 * Relay32 definitions
4 * Copyright 1995 Martin von Loewis
5 */
7 #ifndef __WINE_RELAY32_H
8 #define __WINE_RELAY32_H
10 #include "struct32.h"
12 typedef struct tagWNDCLASSA{
13 UINT style;
14 WNDPROC lpfnWndProc;
15 int cbClsExtra;
16 int cbWndExtra;
17 DWORD hInstance;
18 DWORD hIcon;
19 DWORD hCursor;
20 DWORD hbrBackground;
21 char* lpszMenuName;
22 char* lpszClassName;
23 }WNDCLASSA;
25 ATOM USER32_RegisterClassA(WNDCLASSA *);
26 LRESULT USER32_DefWindowProcA(DWORD hwnd,DWORD msg,DWORD wParam,DWORD lParam);
27 BOOL USER32_GetMessageA(MSG32* lpmsg,DWORD hwnd,DWORD min,DWORD max);
28 HDC USER32_BeginPaint(DWORD hwnd,PAINTSTRUCT32 *lpps);
29 BOOL USER32_EndPaint(DWORD hwnd,PAINTSTRUCT32 *lpps);
30 #endif