26 lines
313 B
C
26 lines
313 B
C
![]() |
// MyUnknown.h
|
||
|
|
||
|
#ifndef __MYUNKNOWN_H
|
||
|
#define __MYUNKNOWN_H
|
||
|
|
||
|
#ifdef WIN32
|
||
|
|
||
|
// #include <guiddef.h>
|
||
|
#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
|