mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 22:02:58 -06:00
25 lines
439 B
C
25 lines
439 B
C
#ifndef OLE_H
|
|
#define OLE_H
|
|
|
|
#include <Core/Core.h>
|
|
|
|
#if defined(PLATFORM_WIN32) && !defined(PLATFORM_WINCE) && defined(COMPILER_MSC)
|
|
|
|
#define Ptr Ptr_
|
|
#define StdFont StdFont_
|
|
#define Picture Picture_
|
|
#define byte win32_byte_ // RpcNdr defines byte -> class with Upp::byte
|
|
#define CY win32_CY_
|
|
#include <comdef.h>
|
|
#include <comip.h>
|
|
#undef Ptr
|
|
#undef StdFont
|
|
#undef Picture
|
|
#undef byte
|
|
#undef CY
|
|
|
|
#endif
|
|
|
|
#include "util.h"
|
|
|
|
#endif//OLE_H
|