mirror of
https://github.com/brain-hackers/brainlilo
synced 2024-11-01 07:48:00 +09:00
19 lines
220 B
C
19 lines
220 B
C
#pragma once
|
|
|
|
#include <windows.h>
|
|
|
|
#ifndef BRAINLILO_API
|
|
#define BRAINLILO_API __declspec(dllimport)
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
{
|
|
#endif
|
|
|
|
BRAINLILO_API BOOL RKDoSoftReset();
|
|
|
|
#ifdef __cplusplus
|
|
};
|
|
#endif
|