#include "DCommon.h"Go to the source code of this file.
Functions | |
| void DRIVERCC | ErrorBox (char *Str) |
| BOOL DRIVERCC | DrvShutdown (void) |
| void | SetLastDrvError (int32 Error, char *ErrorStr) |
Variables | |
| DRV_Window | ClientWindow |
| DRV_Driver | D3DDRV |
|
|
Definition at line 58 of file GlideDrv.c.
00059 {
00060 GMain_Shutdown();
00061
00062 return TRUE;
00063 }
|
|
|
Definition at line 230 of file softdrv.c.
00231 {
00232 DrvShutdown();
00233 DumpErrorLogToFile("softdrv.log");
00234 }
|
|
||||||||||||
|
Definition at line 250 of file D3ddrv7x.cpp.
00251 {
00252 LastError = Error;
00253
00254 if (ErrorStr)
00255 {
00256 strcpy(LastErrorStr, ErrorStr);
00257 }
00258 else
00259 LastErrorStr[0] = NULL;
00260
00261 D3DDRV.LastErrorStr = LastErrorStr;
00262 D3DDRV.LastError = LastError;
00263 }
|
|
|
Definition at line 27 of file D3D8Drv/D3DDRV.H. |
|
|
Definition at line 28 of file D3D8Drv/D3DDRV.H. |
1.3.2