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
89305692
Commit
89305692
authored
Oct 12, 2000
by
Francois Gouget
Committed by
Alexandre Julliard
Oct 12, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added four DDElParam functions.
Now needs an 'extern "C"' protection for C++.
parent
8ea81813
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
2 deletions
+17
-2
dde.h
include/dde.h
+17
-0
winuser.h
include/winuser.h
+0
-2
No files found.
include/dde.h
View file @
89305692
...
...
@@ -13,6 +13,10 @@
#include "windef.h"
#ifdef __cplusplus
extern
"C"
{
#endif
#define WM_DDE_INITIATE 0x3E0
#define WM_DDE_TERMINATE 0x3E1
#define WM_DDE_ADVISE 0x3E2
...
...
@@ -57,4 +61,17 @@ struct tagDDEPOKE
};
typedef
struct
tagDDEPOKE
DDEPOKE
;
/* lParam packing/unpacking API */
LPARAM
WINAPI
PackDDElParam
(
UINT
,
UINT
,
UINT
);
BOOL
WINAPI
UnpackDDElParam
(
UINT
,
LPARAM
,
PUINT
,
PUINT
);
BOOL
WINAPI
FreeDDElParam
(
UINT
,
LPARAM
);
LPARAM
WINAPI
ReuseDDElParam
(
LPARAM
,
UINT
,
UINT
,
UINT
,
UINT
);
#ifdef __cplusplus
}
#endif
#endif
/* __WINE_DDE_H */
include/winuser.h
View file @
89305692
...
...
@@ -3120,7 +3120,6 @@ BOOL WINAPI RegisterHotKey(HWND,INT,UINT,UINT);
HDEVNOTIFY
WINAPI
RegisterDeviceNotificationA
(
HANDLE
,
LPVOID
,
DWORD
);
HDEVNOTIFY
WINAPI
RegisterDeviceNotificationW
(
HANDLE
,
LPVOID
,
DWORD
);
#define RegisterDeviceNotification WINELIB_NAME_AW(RegisterDeviceNotification)
UINT
WINAPI
ReuseDDElParam
(
UINT
,
UINT
,
UINT
,
UINT
,
UINT
);
BOOL
WINAPI
SendMessageCallbackA
(
HWND
,
UINT
,
WPARAM
,
LPARAM
,
FARPROC
,
DWORD
);
BOOL
WINAPI
SendMessageCallbackW
(
HWND
,
UINT
,
WPARAM
,
LPARAM
,
FARPROC
,
DWORD
);
#define SendMessageCallback WINELIB_NAME_AW(SendMessageCallback)
...
...
@@ -3140,7 +3139,6 @@ WORD WINAPI TileWindows (HWND, UINT, const LPRECT,
INT
WINAPI
ToUnicode
(
UINT
,
UINT
,
PBYTE
,
LPWSTR
,
int
,
UINT
);
BOOL
WINAPI
TrackPopupMenuEx
(
HMENU
,
UINT
,
INT
,
INT
,
HWND
,
LPTPMPARAMS
);
UINT
WINAPI
UnpackDDElParam
(
UINT
,
UINT
,
UINT
*
,
UINT
*
);
BOOL
WINAPI
UnregisterDeviceNotification
(
HDEVNOTIFY
);
BOOL
WINAPI
UnregisterHotKey
(
HWND
,
INT
);
DWORD
WINAPI
WaitForInputIdle
(
HANDLE
,
DWORD
);
...
...
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