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
0ca46dc3
Commit
0ca46dc3
authored
Dec 19, 2002
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
LPCONVCONTEXT should be PCONVCONTEXT (spotted by Dimitrie O. Paun).
Same for LPHSZPAIR and LPCONVINFO.
parent
a93a5e9c
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
9 deletions
+9
-9
client.c
dlls/user/dde/client.c
+2
-2
misc.c
dlls/user/dde/misc.c
+1
-1
ddeml.h
include/ddeml.h
+6
-6
No files found.
dlls/user/dde/client.c
View file @
0ca46dc3
...
...
@@ -58,7 +58,7 @@ const WCHAR WDML_szClientConvClassW[] = {'D','d','e','C','l','i','e','n','t','U'
* Failure: 0
*/
HCONVLIST
WINAPI
DdeConnectList
(
DWORD
idInst
,
HSZ
hszService
,
HSZ
hszTopic
,
HCONVLIST
hConvList
,
L
PCONVCONTEXT
pCC
)
HCONVLIST
hConvList
,
PCONVCONTEXT
pCC
)
{
FIXME
(
"(%ld,%p,%p,%p,%p): stub
\n
"
,
idInst
,
hszService
,
hszTopic
,
hConvList
,
pCC
);
return
(
HCONVLIST
)
1
;
...
...
@@ -94,7 +94,7 @@ BOOL WINAPI DdeDisconnectList(HCONVLIST hConvList)
* DdeConnect (USER32.@)
*/
HCONV
WINAPI
DdeConnect
(
DWORD
idInst
,
HSZ
hszService
,
HSZ
hszTopic
,
L
PCONVCONTEXT
pCC
)
PCONVCONTEXT
pCC
)
{
HWND
hwndClient
;
WDML_INSTANCE
*
pInstance
;
...
...
dlls/user/dde/misc.c
View file @
0ca46dc3
...
...
@@ -2027,7 +2027,7 @@ static BOOL WDML_GetLocalConvInfo(WDML_CONV* pConv, CONVINFO* ci, DWORD id)
* DdeQueryConvInfo (USER32.@)
*
*/
UINT
WINAPI
DdeQueryConvInfo
(
HCONV
hConv
,
DWORD
id
,
L
PCONVINFO
lpConvInfo
)
UINT
WINAPI
DdeQueryConvInfo
(
HCONV
hConv
,
DWORD
id
,
PCONVINFO
lpConvInfo
)
{
UINT
ret
=
lpConvInfo
->
cb
;
CONVINFO
ci
;
...
...
include/ddeml.h
View file @
0ca46dc3
...
...
@@ -292,7 +292,7 @@ typedef struct tagHSZPAIR
{
HSZ
hszSvc
;
HSZ
hszTopic
;
}
HSZPAIR
,
*
PHSZPAIR
,
*
LPHSZPAIR
;
}
HSZPAIR
,
*
PHSZPAIR
;
typedef
struct
tagCONVCONTEXT
{
...
...
@@ -302,7 +302,7 @@ typedef struct tagCONVCONTEXT
INT
iCodePage
;
DWORD
dwLangID
;
DWORD
dwSecurity
;
}
CONVCONTEXT
,
*
L
PCONVCONTEXT
;
}
CONVCONTEXT
,
*
PCONVCONTEXT
;
typedef
struct
tagCONVINFO
{
...
...
@@ -322,7 +322,7 @@ typedef struct tagCONVINFO
CONVCONTEXT
ConvCtxt
;
HWND
hwnd
;
HWND
hwndPartner
;
}
CONVINFO
,
*
L
PCONVINFO
;
}
CONVINFO
,
*
PCONVINFO
;
/* Interface Definitions */
...
...
@@ -331,13 +331,13 @@ UINT WINAPI DdeInitializeA(LPDWORD,PFNCALLBACK,DWORD,DWORD);
UINT
WINAPI
DdeInitializeW
(
LPDWORD
,
PFNCALLBACK
,
DWORD
,
DWORD
);
#define DdeInitialize WINELIB_NAME_AW(DdeInitialize)
BOOL
WINAPI
DdeUninitialize
(
DWORD
);
HCONVLIST
WINAPI
DdeConnectList
(
DWORD
,
HSZ
,
HSZ
,
HCONVLIST
,
L
PCONVCONTEXT
);
HCONVLIST
WINAPI
DdeConnectList
(
DWORD
,
HSZ
,
HSZ
,
HCONVLIST
,
PCONVCONTEXT
);
HCONV
WINAPI
DdeQueryNextServer
(
HCONVLIST
,
HCONV
);
DWORD
WINAPI
DdeQueryStringA
(
DWORD
,
HSZ
,
LPSTR
,
DWORD
,
INT
);
DWORD
WINAPI
DdeQueryStringW
(
DWORD
,
HSZ
,
LPWSTR
,
DWORD
,
INT
);
#define DdeQueryString WINELIB_NAME_AW(DdeQueryString)
BOOL
WINAPI
DdeDisconnectList
(
HCONVLIST
);
HCONV
WINAPI
DdeConnect
(
DWORD
,
HSZ
,
HSZ
,
L
PCONVCONTEXT
);
HCONV
WINAPI
DdeConnect
(
DWORD
,
HSZ
,
HSZ
,
PCONVCONTEXT
);
BOOL
WINAPI
DdeDisconnect
(
HCONV
);
HDDEDATA
WINAPI
DdeCreateDataHandle
(
DWORD
,
LPBYTE
,
DWORD
,
DWORD
,
HSZ
,
UINT
,
UINT
);
HCONV
WINAPI
DdeReconnect
(
HCONV
);
...
...
@@ -361,7 +361,7 @@ BOOL WINAPI DdeSetUserHandle(HCONV,DWORD,DWORD);
HDDEDATA
WINAPI
DdeNameService
(
DWORD
,
HSZ
,
HSZ
,
UINT
);
UINT
WINAPI
DdeGetLastError
(
DWORD
);
UINT
WINAPI
DdeQueryConvInfo
(
HCONV
,
DWORD
,
L
PCONVINFO
);
UINT
WINAPI
DdeQueryConvInfo
(
HCONV
,
DWORD
,
PCONVINFO
);
#ifdef __cplusplus
}
/* extern "C" */
...
...
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