2004-08-21 10:50:17 +00:00
|
|
|
// MyUnknown.h
|
|
|
|
|
|
|
|
#ifndef __MYUNKNOWN_H
|
|
|
|
#define __MYUNKNOWN_H
|
|
|
|
|
2006-10-16 08:46:36 +00:00
|
|
|
#ifdef _WIN32
|
2004-08-21 10:50:17 +00:00
|
|
|
|
|
|
|
#ifdef _WIN32_WCE
|
|
|
|
#if (_WIN32_WCE > 300)
|
|
|
|
#include <basetyps.h>
|
|
|
|
#else
|
|
|
|
#define MIDL_INTERFACE(x) struct
|
|
|
|
#endif
|
|
|
|
#else
|
|
|
|
#include <basetyps.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <unknwn.h>
|
|
|
|
|
|
|
|
#else
|
|
|
|
#include "MyWindows.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|