proccount.h
来自「window下的多线程编程参考书。值得一读」· C头文件 代码 · 共 34 行
H
34 行
//
// 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 + =
减小字号Ctrl + -
显示快捷键?