| 12345678910111213141516171819202122232425 |
- /**************************************************************************************************
- ** **
- ** 文件名称: commSingleApp.h **
- ** 版权所有: CopyRight @ LEON WorkStudio CO.LTD. 2017 **
- ** 文件描述: 判断系统中是否已经存在该进程的实例 **
- ** =========================================================================================== **
- ** 创建信息: | 2017-9-14 | LEON | 创建本模块 **
- ** =========================================================================================== **
- ** 修改信息: 单击此处添加.... **
- **************************************************************************************************/
- #ifndef COMM_SINGLE_APP_H
- #define COMM_SINGLE_APP_H
- #ifdef __cplusplus
- extern "C"
- {
- #endif
- int proc_is_exist(const char *procname);
- #ifdef __cplusplus
- }
- #endif
- #endif
|