Advertisement
Guest User

Untitled

a guest
Jun 30th, 2015
156
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. #include <iostream>
  2. #include <conio.h>
  3. #include "sigar.h"
  4.  
  5. extern "C" {
  6. #include "sigar_format.h"
  7.  
  8. }
  9. using namespace std;
  10. int main(){
  11.  
  12. int status, i;
  13. sigar_t *sigar;
  14. sigar_cpu_list_t cpulist;
  15.  
  16. sigar_open(&sigar);
  17.  
  18. getch();
  19. return 0;
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement