You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
556 B
25 lines
556 B
//----------------------------------------------------------------------------
|
|
//
|
|
// 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_
|
|
|