?? 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 + -