mirror of
https://github.com/XboxDev/nxdk.git
synced 2026-02-05 19:25:29 +00:00
18 lines
176 B
C
18 lines
176 B
C
#ifndef __DEBUGAPI_H__
|
|
#define __DEBUGAPI_H__
|
|
|
|
#include <windef.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
{
|
|
#endif
|
|
|
|
BOOL IsDebuggerPresent (VOID);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|