2009-02-10 18:37:48 +00:00
|
|
|
#ifndef __Perfdata_h__
|
|
|
|
#define __Perfdata_h__
|
|
|
|
|
|
|
|
#include "titledb.h"
|
|
|
|
#include "perfsnap.h"
|
|
|
|
#include "objlist.h"
|
|
|
|
#include "perfobj.h"
|
|
|
|
#include "objinst.h"
|
|
|
|
#include "perfcntr.h"
|
|
|
|
|
|
|
|
/* The exported functions */
|
|
|
|
extern "C"
|
|
|
|
{
|
|
|
|
__declspec( dllexport ) UINT Initialize(HMODULE instance, LPCTSTR iniFile, LPCTSTR section, UINT id);
|
|
|
|
__declspec( dllexport ) void Finalize(HMODULE instance, UINT id);
|
2010-02-04 07:16:22 +00:00
|
|
|
__declspec( dllexport ) double Update2(UINT id);
|
2009-02-10 18:37:48 +00:00
|
|
|
__declspec( dllexport ) UINT GetPluginVersion();
|
|
|
|
__declspec( dllexport ) LPCTSTR GetPluginAuthor();
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|