Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
89c377ce
Commit
89c377ce
authored
Apr 06, 1999
by
Keith Matthews
Committed by
Alexandre Julliard
Apr 06, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Moved internal structures to ddeml.c, also removed non-ANSI comments,
and added spec for DdeQueryConfInfo and DdeQueryConvInfo16.
parent
f9e030dc
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
16 deletions
+4
-16
ddeml.h
include/ddeml.h
+4
-16
No files found.
include/ddeml.h
View file @
89c377ce
...
...
@@ -197,6 +197,7 @@ typedef DWORD HDDEDATA;
typedef
CHAR
*
LPTSTR
;
/*******************************************************
API Entry Points
...
...
@@ -271,23 +272,8 @@ typedef struct
HWND
hwnd
;
HWND
hwndPartner
;
}
CONVINFO
,
*
LPCONVINFO
;
// Internal data structures
/* entry for handle table */
typedef
struct
DDE_HANDLE_ENTRY
{
BOOL16
Monitor
;
// have these two as full Booleans cos they'll be tested frequently
BOOL16
Client_only
;
// bit wasteful of space but it will be faster
BOOL16
Unicode
;
/* Flag to indicate Win32 API used to initialise */
BOOL16
Win16
;
/* flag to indicate Win16 API used to initialize */
DWORD
Instance_id
;
// needed to track monitor usage
struct
DDE_HANDLE_ENTRY
*
Next_Entry
;
PFNCALLBACK
CallBack
;
DWORD
CBF_Flags
;
DWORD
Monitor_flags
;
UINT
Txn_count
;
// count transactions open to simplify closure
}
DDE_HANDLE_ENTRY
;
/
/ Interface Definitions
/
* Interface Definitions */
UINT16
WINAPI
DdeInitialize16
(
LPDWORD
,
PFNCALLBACK16
,
DWORD
,
DWORD
);
...
...
@@ -345,5 +331,7 @@ HDDEDATA WINAPI DdeNameService16(DWORD,HSZ,HSZ,UINT16);
HDDEDATA
WINAPI
DdeNameService
(
DWORD
,
HSZ
,
HSZ
,
UINT
);
UINT16
WINAPI
DdeGetLastError16
(
DWORD
);
UINT
WINAPI
DdeGetLastError
(
DWORD
);
UINT16
WINAPI
DdeQueryConvInfo16
(
HCONV
,
DWORD
,
LPCONVINFO16
);
UINT
WINAPI
DdeQueryConvInfo
(
HCONV
,
DWORD
,
LPCONVINFO
);
#endif
/* __WINE__DDEML_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