NAMD
ccsinterface.h
Go to the documentation of this file.
1 
7 #include <stdio.h>
8 #include <string.h>
9 #include "converse.h"
10 #include <errno.h>
11 
12 #if CMK_WHEN_PROCESSOR_IDLE_USLEEP
13 #include <sys/types.h>
14 #include <sys/time.h>
15 #endif
16 
17 #if CMK_TIMER_USE_TIMES
18 #include <sys/times.h>
19 #include <limits.h>
20 #ifndef WIN32
21 #include <unistd.h>
22 #endif
23 #endif
24 
25 #if CMK_TIMER_USE_GETRUSAGE
26 #include <sys/time.h>
27 #include <sys/resource.h>
28 #endif
29 
30 #if(CMK_CCS_AVAILABLE && CMK_WEB_MODE)
31 
32 #ifdef __cplusplus
33 extern "C" {
34 #endif
35 void CApplicationInit(void);
36 void CApplicationDepositData(char *data);
37 void CApplicationDepositNode0Data(char *data);
38 #ifdef __cplusplus
39 }
40 #endif
41 
42 #endif