blob: d9904f5245dbb92cdeb23d84149e88b66d66fd1c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
//+------------------------------------------------------------------------
//
// Microsoft Windows
// Copyright (C) Microsoft Corporation, 1993.
//
// File: benchmrk.hxx
//
// Contents: definitions for benchmark test
//
// Classes:
//
// Functions:
//
// History: 30-June-93 t-martig Created
//
//--------------------------------------------------------------------------
#ifndef __BENCHMRK_H
#define __BENCHMRK_H
#include <windows.h>
#include <ole2.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#ifdef _CAIRO_
#include <oleext.h> // cairo extensions to OLE, OleInitializeEx, etc.
#endif
#ifdef WIN32 // BUGBUG: need replacement for WIN16
#include <stopwtch.hxx>
#endif
#include <bmcomm.hxx>
#include <bminput.hxx>
#include <bmoutput.hxx>
#include <bmlog.hxx>
#endif // __BENCHMRK_H
|