mirror of
https://github.com/holub/mame
synced 2025-04-28 19:14:55 +03:00
14 lines
165 B
C
14 lines
165 B
C
// MyUnknown.h
|
|
|
|
#ifndef __MY_UNKNOWN_H
|
|
#define __MY_UNKNOWN_H
|
|
|
|
#ifdef _WIN32
|
|
#include <basetyps.h>
|
|
#include <unknwn.h>
|
|
#else
|
|
#include "MyWindows.h"
|
|
#endif
|
|
|
|
#endif
|