mirror of
https://github.com/reactos/reactos.git
synced 2025-05-06 18:31:26 +00:00
[MAPI32]
* Improve the GUIDs situation. CORE-7716 svn path=/trunk/; revision=61409
This commit is contained in:
parent
376c9adb71
commit
0b5e0ae28b
3 changed files with 17 additions and 2 deletions
|
@ -10,11 +10,12 @@ list(APPEND SOURCE
|
|||
sendmail.c
|
||||
util.c
|
||||
stubs.c
|
||||
guid.c
|
||||
${CMAKE_CURRENT_BINARY_DIR}/mapi32_stubs.c
|
||||
${CMAKE_CURRENT_BINARY_DIR}/mapi32.def)
|
||||
|
||||
add_library(mapi32 SHARED ${SOURCE} version.rc)
|
||||
set_module_type(mapi32 win32dll)
|
||||
target_link_libraries(mapi32 wine)
|
||||
target_link_libraries(mapi32 uuid wine)
|
||||
add_importlibs(mapi32 shlwapi user32 advapi32 msvcrt kernel32 ntdll)
|
||||
add_cd_file(TARGET mapi32 DESTINATION reactos/system32 FOR all)
|
||||
|
|
15
reactos/dll/win32/mapi32/guid.c
Normal file
15
reactos/dll/win32/mapi32/guid.c
Normal file
|
@ -0,0 +1,15 @@
|
|||
/* DO NOT USE THE PRECOMPILED HEADER FOR THIS FILE! */
|
||||
|
||||
#include <stdarg.h>
|
||||
|
||||
#define WIN32_NO_STATUS
|
||||
#define _INC_WINDOWS
|
||||
#define COM_NO_WINDOWS_H
|
||||
|
||||
#include <windef.h>
|
||||
#include <winbase.h>
|
||||
#include <objbase.h>
|
||||
#include <initguid.h>
|
||||
#include <mapiguid.h>
|
||||
|
||||
/* NO CODE HERE, THIS IS JUST REQUIRED FOR THE GUID DEFINITIONS */
|
|
@ -16,7 +16,6 @@
|
|||
#include <windef.h>
|
||||
#include <winbase.h>
|
||||
#include <winreg.h>
|
||||
#include <initguid.h>
|
||||
#include <mapival.h>
|
||||
#include <mapiutil.h>
|
||||
|
||||
|
|
Loading…
Reference in a new issue