mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-01 08:13:18 +00:00
1ed4ecffa8
Removed warnings. Made the include files self-sufficient. Some Solaris fixes.
35 lines
613 B
C
35 lines
613 B
C
/*
|
|
* IP Address class extra info
|
|
*
|
|
* Copyright 1998 Eric Kohl
|
|
* Copyright 1998 Alex Priem
|
|
*/
|
|
|
|
#ifndef __WINE_IPADDRESS_H
|
|
#define __WINE_IPADDRESS_H
|
|
|
|
#include "windef.h"
|
|
|
|
typedef struct tagIPADDRESS_INFO
|
|
{
|
|
BYTE LowerLimit[4];
|
|
BYTE UpperLimit[4];
|
|
|
|
RECT rcClient;
|
|
INT uFocus;
|
|
} IPADDRESS_INFO;
|
|
|
|
typedef struct tagIP_SUBCLASS_INFO
|
|
{
|
|
WNDPROC wpOrigProc[4];
|
|
HWND hwndIP[4];
|
|
IPADDRESS_INFO *infoPtr;
|
|
HWND hwnd;
|
|
UINT uRefCount;
|
|
} IP_SUBCLASS_INFO, *LPIP_SUBCLASS_INFO;
|
|
|
|
|
|
extern void IPADDRESS_Register (void);
|
|
extern void IPADDRESS_Unregister (void);
|
|
|
|
#endif /* __WINE_IPADDRESS_H */
|