mirror of
https://gitea.wildfiregames.com/0ad/0ad.git
synced 2026-07-20 22:07:33 +00:00
a3696c0b91
lib/sysdep: clean up by moving OS and cpu-arch folders into "os" and "arch" folders This was SVN commit r6162.
20 lines
541 B
C
20 lines
541 B
C
/**
|
|
* =========================================================================
|
|
* File : wseh.h
|
|
* Project : 0 A.D.
|
|
* Description : Win32 debug support code and exception handler.
|
|
* =========================================================================
|
|
*/
|
|
|
|
// license: GPL; see lib/license.txt
|
|
|
|
#ifndef INCLUDED_WSEH
|
|
#define INCLUDED_WSEH
|
|
|
|
struct _EXCEPTION_POINTERS;
|
|
extern long __stdcall wseh_ExceptionFilter(_EXCEPTION_POINTERS* ep);
|
|
|
|
EXTERN_C int wseh_EntryPoint();
|
|
|
|
#endif // #ifndef INCLUDED_WSEH
|