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.
20 lines
589 B
20 lines
589 B
/****************************************************************************
|
|
*
|
|
* File: dispinfo8.h
|
|
* Project: DxDiag (DirectX Diagnostic Tool)
|
|
* Author: Jason Sandlin ([email protected])
|
|
* Purpose: Gather D3D8 information
|
|
*
|
|
* (C) Copyright 2000 Microsoft Corp. All rights reserved.
|
|
*
|
|
****************************************************************************/
|
|
|
|
#ifndef DISPINFO8_H
|
|
#define DISPINFO8_H
|
|
|
|
HRESULT InitD3D8();
|
|
VOID CleanupD3D8();
|
|
HRESULT GetDX8AdapterInfo(DisplayInfo* pDisplayInfo);
|
|
BOOL IsD3D8Working();
|
|
|
|
#endif // DISPINFO8_H
|