26 lines
556 B
C
26 lines
556 B
C
//----------------------------------------------------------------------------
|
|
//
|
|
// refutil.h
|
|
//
|
|
// Umbrella header file for the reference implementation
|
|
//
|
|
// Copyright (C) Microsoft Corporation, 1997.
|
|
//
|
|
//----------------------------------------------------------------------------
|
|
|
|
#ifndef _REFUTIL_H_
|
|
#define _REFUTIL_H_
|
|
|
|
#ifndef DllExport
|
|
#define DllExport __declspec( dllexport )
|
|
#endif
|
|
|
|
#include <d3dref.h>
|
|
#include <d3ditype.h>
|
|
#include <d3dutil.h>
|
|
#include <span.h>
|
|
#include <d3dflt.h>
|
|
|
|
#endif // #ifndef _REFUTIL_H_
|
|
|