123456789101112131415161718192021222324 |
- /*
- * ********************************************
- *
- * Licensed Materials - Property of IBM and/or HCL
- *
- * IBM Informix Dynamic Server
- * Copyright IBM Corporation 2010, 2013
- * (c) Copyright HCL Technologies Ltd. 2017. All Rights Reserved.
- *
- * ********************************************
- */
- #include "API.h"
- #ifndef IAD_SYSINFO_H
- #define IAD_SYSINFO_H
- EXPORT double STDCALL iadGetCPUSpeed(install_t *is);
- EXPORT int STDCALL iadGetTotalCPU(install_t *is);
- EXPORT off_t STDCALL iadGetTotalMemory(install_t *is);
- EXPORT size_t STDCALL iadGetPageSize(install_t *is);
- void initMachInfo(install_t *is);
- #define CPU_MHZ_KEY "HARDWARE\\DESCRIPTION\\System\\CentralProcessor\\0"
- #endif /* IAD_SYSINFO_H */
|