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
8aeb463d
Commit
8aeb463d
authored
May 01, 2004
by
Chris Morgan
Committed by
Alexandre Julliard
May 01, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Stub cmc_query_configuration() and add xcmc.h header file.
parent
d4874d64
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
29 additions
and
1 deletion
+29
-1
mapi32.spec
dlls/mapi32/mapi32.spec
+1
-1
util.c
dlls/mapi32/util.c
+27
-0
Makefile.in
include/Makefile.in
+1
-0
xcmc.h
include/xcmc.h
+0
-0
No files found.
dlls/mapi32/mapi32.spec
View file @
8aeb463d
...
...
@@ -171,7 +171,7 @@
232 stub cmc_logoff
233 stub cmc_logon
234 stub cmc_look_up
235 st
ub cmc_query_configuration
235 st
dcall cmc_query_configuration( long long ptr ptr )
236 stub cmc_read
237 stub cmc_send
238 stub cmc_send_documents
...
...
dlls/mapi32/util.c
View file @
8aeb463d
...
...
@@ -32,6 +32,7 @@
#include "wine/debug.h"
#include "wine/unicode.h"
#include "mapival.h"
#include "xcmc.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
mapi
);
...
...
@@ -539,3 +540,29 @@ HRESULT WINAPI OpenStreamOnFile(LPALLOCATEBUFFER lpAlloc, LPFREEBUFFER lpFree,
NULL
,
lppStream
);
return
hRet
;
}
/*************************************************************************
* cmc_query_configuration (MAPI32.235)
*
* Retrieves the configuration information for the installed CMC
*
* PARAMS
* session [I] MAPI session handle
* item [I] Enumerated variable that identifies which
* configuration information is being requested
* reference [O] Buffer where configuration information is written
* config_extensions[I/O] Path of file to create stream on
*
* RETURNS
* A CMD define
*/
CMC_return_code
WINAPI
cmc_query_configuration
(
CMC_session_id
session
,
CMC_enum
item
,
CMC_buffer
reference
,
CMC_extension
*
config_extensions
)
{
FIXME
(
"stub"
);
return
CMC_E_NOT_SUPPORTED
;
}
include/Makefile.in
View file @
8aeb463d
...
...
@@ -228,6 +228,7 @@ WINDOWS_INCLUDES = \
ws2tcpip.h
\
wshisotp.h
\
wsipx.h
\
xcmc.h
\
zmouse.h
\
$(IDL_INCLUDES)
\
$(IDL_SRCS)
\
...
...
include/xcmc.h
0 → 100644
View file @
8aeb463d
This diff is collapsed.
Click to expand it.
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