2009-05-02 14:42:30 +02:00
|
|
|
// MyUnknown.h
|
|
|
|
|
|
|
|
#ifndef __MYUNKNOWN_H
|
|
|
|
#define __MYUNKNOWN_H
|
|
|
|
|
|
|
|
#ifdef _WIN32
|
|
|
|
|
|
|
|
#ifdef _WIN32_WCE
|
|
|
|
#if (_WIN32_WCE > 300)
|
|
|
|
#include <basetyps.h>
|
|
|
|
#else
|
2010-04-27 08:56:47 +02:00
|
|
|
#define MIDL_INTERFACE(x) struct
|
2009-05-02 14:42:30 +02:00
|
|
|
#endif
|
|
|
|
#else
|
|
|
|
#include <basetyps.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <unknwn.h>
|
|
|
|
|
2010-04-27 08:56:47 +02:00
|
|
|
#else
|
2009-05-02 14:42:30 +02:00
|
|
|
#include "MyWindows.h"
|
|
|
|
#endif
|
2010-04-27 08:56:47 +02:00
|
|
|
|
2009-05-02 14:42:30 +02:00
|
|
|
#endif
|