12345678910111213141516171819202122 |
- #ifndef SPHOST_MONITOR_H
- #define SPHOST_MONITOR_H
- #pragma once
- #ifdef __cplusplus
- extern "C" {
- #endif
- void getCurrentMemoryInfo(unsigned long *memorySize);
- void cleanMemory();
- void getHandleNum(unsigned long *handleNum);
- unsigned long GetProcessIdFromName(char * name);
- #ifdef __cplusplus
- }
- #endif
- #endif
|