C/C++ 定义接口文件格式
2015-09-08 17:03 sylar_liang 阅读(619) 评论(0) 收藏 举报#ifndef _XXX_H_
#define _XXX_H_
#ifdef __cplusplus
extern "C" {
#endif
// Interface
void PrintHelloWorld();
#ifdef __cplusplus
}
#endif
#endif // _XXX_H_
#ifndef _XXX_H_
#define _XXX_H_
#ifdef __cplusplus
extern "C" {
#endif
// Interface
void PrintHelloWorld();
#ifdef __cplusplus
}
#endif
#endif // _XXX_H_