sphostMonitor.h 318 B

12345678910111213141516171819202122
  1. #ifndef SPHOST_MONITOR_H
  2. #define SPHOST_MONITOR_H
  3. #pragma once
  4. #ifdef __cplusplus
  5. extern "C" {
  6. #endif
  7. void getCurrentMemoryInfo(unsigned long *memorySize);
  8. void cleanMemory();
  9. void getHandleNum(unsigned long *handleNum);
  10. unsigned long GetProcessIdFromName(char * name);
  11. #ifdef __cplusplus
  12. }
  13. #endif
  14. #endif