3
0
mirror of https://github.com/XboxDev/nxdk.git synced 2026-04-03 05:43:26 +00:00
Files
nxdk/lib/winapi/debugapi.h
2024-09-11 06:17:06 +09:30

21 lines
257 B
C

// SPDX-License-Identifier: MIT
// SPDX-FileCopyrightText: 2019 Stefan Schmidt
#ifndef __DEBUGAPI_H__
#define __DEBUGAPI_H__
#include <windef.h>
#ifdef __cplusplus
extern "C" {
#endif
BOOL IsDebuggerPresent (VOID);
#ifdef __cplusplus
}
#endif
#endif