📄 proccount.h
字号:
//
// FILE: proccount.h
//
// Copyright (c) 1997 by Aaron Michael Cohen and Mike Woodring
//
/////////////////////////////////////////////////////////////////////////
#ifndef __PROCCOUNT_H__
#define __PROCCOUNT_H__
#ifdef EXPORT_PROCCOUNTAPI
#define PROCCOUNTAPI __declspec(dllexport)
#else
#define PROCCOUNTAPI __declspec(dllimport)
#endif
#ifdef __cplusplus
extern "C" {
#endif
// The following variables are exported by this DLL.
//
extern PROCCOUNTAPI LONG glAttachedProcessCount;
// The following functions are exported by this DLL.
//
PROCCOUNTAPI LONG WINAPI GetAttachedProcessCount( void );
#ifdef __cplusplus
} // extern "C" {
#endif
#endif // __PROCCOUNT_H__
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -