mirror of
https://github.com/reactos/reactos.git
synced 2025-05-07 10:46:58 +00:00
[COMCAT_WINETEST]
* Sync with Wine 1.7.1. svn path=/trunk/; revision=60116
This commit is contained in:
parent
127325ea0d
commit
18cfc3961c
3 changed files with 16 additions and 17 deletions
|
@ -1,10 +1,7 @@
|
||||||
|
|
||||||
add_definitions(
|
add_definitions(-D__ROS_LONG64__)
|
||||||
-D__ROS_LONG64__
|
|
||||||
-D_DLL -D__USE_CRTIMP)
|
|
||||||
|
|
||||||
add_executable(comcat_winetest comcat.c testlist.c)
|
add_executable(comcat_winetest comcat.c testlist.c)
|
||||||
target_link_libraries(comcat_winetest wine uuid)
|
target_link_libraries(comcat_winetest uuid)
|
||||||
set_module_type(comcat_winetest win32cui)
|
set_module_type(comcat_winetest win32cui)
|
||||||
add_importlibs(comcat_winetest ole32 advapi32 msvcrt kernel32 ntdll)
|
add_importlibs(comcat_winetest ole32 advapi32 msvcrt kernel32)
|
||||||
add_cd_file(TARGET comcat_winetest DESTINATION reactos/bin FOR all)
|
add_cd_file(TARGET comcat_winetest DESTINATION reactos/bin FOR all)
|
||||||
|
|
|
@ -18,16 +18,21 @@
|
||||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#define WIN32_NO_STATUS
|
||||||
|
#define _INC_WINDOWS
|
||||||
|
#define COM_NO_WINDOWS_H
|
||||||
|
|
||||||
#define COBJMACROS
|
#define COBJMACROS
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <wine/test.h>
|
||||||
#include <initguid.h>
|
|
||||||
#include <windows.h>
|
|
||||||
|
|
||||||
#include "objbase.h"
|
//#include <stdio.h>
|
||||||
#include "comcat.h"
|
//#include <initguid.h>
|
||||||
|
//#include <windows.h>
|
||||||
#include "wine/test.h"
|
#include <winreg.h>
|
||||||
|
//#include "objbase.h"
|
||||||
|
#include <ole2.h>
|
||||||
|
#include <comcat.h>
|
||||||
|
|
||||||
#define ok_ole_success(hr, func) ok(hr == S_OK, func " failed with error 0x%08x\n", hr)
|
#define ok_ole_success(hr, func) ok(hr == S_OK, func " failed with error 0x%08x\n", hr)
|
||||||
|
|
||||||
|
|
|
@ -1,10 +1,7 @@
|
||||||
/* Automatically generated file; DO NOT EDIT!! */
|
/* Automatically generated file; DO NOT EDIT!! */
|
||||||
|
|
||||||
#define WIN32_LEAN_AND_MEAN
|
|
||||||
#include <windows.h>
|
|
||||||
|
|
||||||
#define STANDALONE
|
#define STANDALONE
|
||||||
#include "wine/test.h"
|
#include <wine/test.h>
|
||||||
|
|
||||||
extern void func_comcat(void);
|
extern void func_comcat(void);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue