blob: e9e8666b9209cdc27fbecd8fdda6ee017165f8bb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// MyUnknown.h
#ifndef __MY_UNKNOWN_H
#define __MY_UNKNOWN_H
#ifdef _WIN32
#include <basetyps.h>
#include <unknwn.h>
#else
#include "MyWindows.h"
#endif
#endif
|