File: MyUnknown.h

package info (click to toggle)
nestopia 1.53.1%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 12,416 kB
  • sloc: cpp: 130,178; xml: 27,245; ansic: 4,053; makefile: 964; sh: 19
file content (24 lines) | stat: -rw-r--r-- 290 bytes parent folder | download | duplicates (22)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// MyUnknown.h

#ifndef __MYUNKNOWN_H
#define __MYUNKNOWN_H

#ifdef _WIN32

#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