mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2025-02-21 11:01:36 +00:00
- Some cleanup.
This commit is contained in:
parent
1acba42baa
commit
0c38c72ad7
2 changed files with 5 additions and 16 deletions
|
@ -2,9 +2,6 @@
|
|||
#define __GL_FRAMEBUFFER
|
||||
|
||||
#ifdef _WIN32
|
||||
#ifdef _MSC_VER
|
||||
#include "win32iface.h"
|
||||
#endif
|
||||
#include "win32gliface.h"
|
||||
#else
|
||||
#include "sdlglvideo.h"
|
||||
|
|
|
@ -3356,19 +3356,11 @@ void DisplayCrashLog ()
|
|||
|
||||
namespace
|
||||
{
|
||||
#ifndef __MINGW32__
|
||||
bool __declspec(thread) DrawerExceptionSetJumpResult;
|
||||
CONTEXT __declspec(thread) DrawerExceptionSetJumpContext;
|
||||
PVOID __declspec(thread) DrawerExceptionHandlerHandle;
|
||||
const char __declspec(thread) *DrawerExceptionReason;
|
||||
bool __declspec(thread) DrawerExceptionFatal;
|
||||
#else
|
||||
bool __thread DrawerExceptionSetJumpResult;
|
||||
CONTEXT __thread DrawerExceptionSetJumpContext;
|
||||
PVOID __thread DrawerExceptionHandlerHandle;
|
||||
const char __thread *DrawerExceptionReason;
|
||||
bool __thread DrawerExceptionFatal;
|
||||
#endif
|
||||
bool thread_local DrawerExceptionSetJumpResult;
|
||||
CONTEXT thread_local DrawerExceptionSetJumpContext;
|
||||
PVOID thread_local DrawerExceptionHandlerHandle;
|
||||
const char thread_local *DrawerExceptionReason;
|
||||
bool thread_local DrawerExceptionFatal;
|
||||
|
||||
LONG WINAPI DrawerExceptionHandler(_EXCEPTION_POINTERS *exceptionInfo)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue