forked from LeenkxTeam/LNXSDK
18 lines
326 B
C
18 lines
326 B
C
#pragma once
|
|
|
|
#include <stdio.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef long HRESULT;
|
|
|
|
void kinc_microsoft_affirm(HRESULT result);
|
|
void kinc_microsoft_affirm_message(HRESULT result, const char *format, ...);
|
|
void kinc_microsoft_format(const char *format, va_list args, wchar_t *buffer);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|