wine/include/ipaddress.h
Marcus Meissner 317af320cf Optimized include/*.h: (recursively) include all headers needed by
this .h file, but only those. Necessary fixes to a lot of .c files,
started optimizing "windows.h" away from some of them. Moved
GetCurrentTask prototype to wine/winbase16.h.
1999-02-17 13:51:06 +00:00

33 lines
601 B
C

/*
* IP Address class extra info
*
* Copyright 1998 Eric Kohl
* Copyright 1998 Alex Priem
*/
#ifndef __WINE_IPADDRESS_H
#define __WINE_IPADDRESS_H
typedef struct tagIPADDRESS_INFO
{
BYTE LowerLimit[4];
BYTE UpperLimit[4];
RECT32 rcClient;
INT32 uFocus;
} IPADDRESS_INFO;
typedef struct tagIP_SUBCLASS_INFO
{
WNDPROC32 wpOrigProc[4];
HWND32 hwndIP[4];
IPADDRESS_INFO *infoPtr;
WND *wndPtr;
UINT32 uRefCount;
} IP_SUBCLASS_INFO, *LPIP_SUBCLASS_INFO;
extern void IPADDRESS_Register (void);
extern void IPADDRESS_Unregister (void);
#endif /* __WINE_IPADDRESS_H */