| 1234567891011121314151617181920212223242526 |
- /**
- * @content:组件标识符定义头文件
- * @time:2016-10-6
- * @author:Mr_zhu
- * @version: V1.0
- * @describe:
- * 1#2016-10-6#V1.0#首次生成
- */
-
- #ifndef INCLUDE_IFACE_H_
- #define INCLUDE_IFACE_H_
-
- #include "Type.h"
-
- #ifdef __cplusplus
- extern "C" {
- #endif
- extern const IID IID_IUnknown;
- extern const IID IID_IProtocol;
-
- extern const ProgID ProgID_IProtocol;
- #ifdef __cplusplus
- }
- #endif
-
- #endif /* INCLUDE_IFACE_H_ */
|