代码改变世界

C/C++ 定义接口文件格式

2015-09-08 17:03  sylar_liang  阅读(600)  评论(0编辑  收藏  举报
#ifndef _XXX_H_
#define _XXX_H_


#ifdef __cplusplus
extern "C" {
#endif

// Interface
void PrintHelloWorld();


#ifdef __cplusplus
}
#endif



#endif // _XXX_H_