⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 plora.h

📁 获取unix系统进程信息的功能
💻 H
字号:
#ifndef PLORA_H
#define	PLORA_H

#ifdef	__cplusplus
extern "C" {
#endif

#ifdef WIN32
#include <windows.h>
#endif

#ifdef WIN32
#define PLUGIN_API __declspec(dllexport)
#else
#define PLUGIN_API 
#endif


#ifdef WIN32
PLUGIN_API int exstart(int sock, HANDLE fd, const char *sArg, void **out);
#else
PLUGIN_API int exstart(int sock, int fd, const char *sArg, void **out);	
#endif

#ifdef WIN32
PLUGIN_API int exend(int sock, HANDLE fd, const char *sArg, void *in);
#else
PLUGIN_API int exend(int sock, int fd, const char *sArg, void *in);	
#endif

#ifdef WIN32
PLUGIN_API int exproc(int sock, HANDLE fd, const char *sArg, void *in);
#else
PLUGIN_API int exproc(int sock, int fd, const char *sArg, void *in);
#endif

#ifdef	__cplusplus
}
#endif

#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -