mirror of
https://github.com/brain-hackers/brainlilo
synced 2024-11-01 07:48:00 +09:00
21 lines
260 B
C
21 lines
260 B
C
// This file is in public domain.
|
|
|
|
#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
|