Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
d70de84e
Commit
d70de84e
authored
Dec 26, 1998
by
Alex Priem
Committed by
Alexandre Julliard
Dec 26, 1998
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
IPaddress common control implementation. First try; needs more work to
remove boring bugs.
parent
0bb85b10
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
23 additions
and
5 deletions
+23
-5
ipaddress.c
dlls/comctl32/ipaddress.c
+0
-0
commctrl.h
include/commctrl.h
+3
-1
ipaddress.h
include/ipaddress.h
+20
-4
No files found.
dlls/comctl32/ipaddress.c
View file @
d70de84e
This diff is collapsed.
Click to expand it.
include/commctrl.h
View file @
d70de84e
...
...
@@ -2468,7 +2468,9 @@ typedef struct tagTCITEM {
#define IPM_SETFOCUS (WM_USER+104)
#define IPM_ISBLANK (WM_USER+105)
#define IPN_FIELDCHANGED (IPN_FIRST-0)
#define IPN_FIRST (0U-860U)
#define IPN_LAST (0U-879U)
#define IPN_FIELDCHANGED (IPN_FIRST-0)
typedef
struct
tagNMIPADDRESS
{
...
...
include/ipaddress.h
View file @
d70de84e
...
...
@@ -2,20 +2,36 @@
* IP Address class extra info
*
* Copyright 1998 Eric Kohl
* Copyright 1998 Alex Priem
*/
#ifndef __WINE_IPADDRESS_H
#define __WINE_IPADDRESS_H
#include "win.h"
typedef
struct
tagIPADDRESS_INFO
{
DWORD
dwDummy
;
/* just to keep the compiler happy ;-) */
BYTE
LowerLimit
[
4
];
BYTE
UpperLimit
[
4
];
RECT32
rcClient
;
INT32
uFocus
;
}
IPADDRESS_INFO
;
}
IPADDRESS_INFO
,
*
LPIPADDRESS_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
);
extern
void
IPADDRESS_Register
(
void
);
extern
void
IPADDRESS_Unregister
(
void
);
#endif
/* __WINE_IPADDRESS_H */
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment