mirror of
https://github.com/HEYAHONG/HCppBox.git
synced 2025-05-09 00:21:37 +08:00
26 lines
569 B
C
26 lines
569 B
C
/***************************************************************
|
|
* Name: hruntime.h
|
|
* Purpose: 声明hruntime接口
|
|
* Author: HYH (hyhsystem.cn)
|
|
* Created: 2025-05-03
|
|
* Copyright: HYH (hyhsystem.cn)
|
|
* License: MIT
|
|
**************************************************************/
|
|
#ifndef __HRUNTIME_H_INCLUDE__
|
|
#define __HRUNTIME_H_INCLUDE__
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
{
|
|
#endif // __cplusplus
|
|
|
|
#include "hruntime/hruntime.h"
|
|
#include "hruntime/hstacklesscoroutine.h"
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif // __cplusplus
|
|
|
|
|
|
#endif // __HRUNTIME_H_INCLUDE__
|