Bug fixes.
[wine] / include / ipaddress.h
1 /*
2  * IP Address class extra info
3  *
4  * Copyright 1998 Eric Kohl
5  * Copyright 1998 Alex Priem
6  */
7
8 #ifndef __WINE_IPADDRESS_H
9 #define __WINE_IPADDRESS_H
10
11 typedef struct tagIPADDRESS_INFO
12 {
13         BYTE LowerLimit[4];
14         BYTE UpperLimit[4];
15
16         RECT    rcClient;
17         INT     uFocus;
18 } IPADDRESS_INFO;
19
20 typedef struct tagIP_SUBCLASS_INFO
21 {
22     WNDPROC wpOrigProc[4];
23     HWND    hwndIP[4];
24         IPADDRESS_INFO *infoPtr;
25     HWND    hwnd;
26     UINT    uRefCount;
27 } IP_SUBCLASS_INFO, *LPIP_SUBCLASS_INFO;
28
29
30 extern void IPADDRESS_Register (void);
31 extern void IPADDRESS_Unregister (void);
32
33 #endif  /* __WINE_IPADDRESS_H */