mirror of
https://github.com/kevinbentley/Descent3.git
synced 2025-01-23 03:58:59 +00:00
28 lines
525 B
C
28 lines
525 B
C
/*---------------------------------------------------------------------------
|
|
*
|
|
* $Workfile: Ia3dutil.h $
|
|
*
|
|
*---------------------------------------------------------------------------
|
|
*$NoKeywords: $
|
|
*/
|
|
|
|
/*
|
|
#ifndef _IA3DUTIL_H_
|
|
#define _IA3DUTIL_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
extern HRESULT A3dInitialize(void);
|
|
extern void A3dUninitialize(void);
|
|
extern HRESULT A3dCreate(GUID *,void **,IUnknown FAR *,DWORD);
|
|
extern HRESULT A3dRegister(void);
|
|
|
|
#ifdef __cplusplus
|
|
};
|
|
#endif
|
|
|
|
#endif // _IA3DUTIL_H_
|
|
*/
|