23 lines
488 B
C
23 lines
488 B
C
//----------------------------------------------------------------------------
|
|
//
|
|
// rast.h
|
|
//
|
|
// Umbrella header file for the rasterizers.
|
|
//
|
|
// Copyright (C) Microsoft Corporation, 1997.
|
|
//
|
|
//----------------------------------------------------------------------------
|
|
|
|
#ifndef _RAST_H_
|
|
#define _RAST_H_
|
|
|
|
#ifndef DllExport
|
|
#define DllExport __declspec( dllexport )
|
|
#endif
|
|
|
|
#include <d3ditype.h>
|
|
#include <d3dutil.h>
|
|
#include <span.h>
|
|
|
|
#endif // #ifndef _RAST_H_
|