Commit 8aeb463d authored by Chris Morgan's avatar Chris Morgan Committed by Alexandre Julliard

Stub cmc_query_configuration() and add xcmc.h header file.

parent d4874d64
......@@ -171,7 +171,7 @@
232 stub cmc_logoff
233 stub cmc_logon
234 stub cmc_look_up
235 stub cmc_query_configuration
235 stdcall cmc_query_configuration( long long ptr ptr )
236 stub cmc_read
237 stub cmc_send
238 stub cmc_send_documents
......
......@@ -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;
}
......@@ -228,6 +228,7 @@ WINDOWS_INCLUDES = \
ws2tcpip.h \
wshisotp.h \
wsipx.h \
xcmc.h \
zmouse.h \
$(IDL_INCLUDES) \
$(IDL_SRCS) \
......
This diff is collapsed. Click to expand it.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment