00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #ifndef _TIMESTAMP_H
00021 #define _TIMESTAMP_H
00022
00023 #include "beecrypt/beecrypt.h"
00024
00025 #if HAVE_LONG_LONG && !defined(__cplusplus)
00026 # define ONE_SECOND 1000LL
00027 # define ONE_MINUTE 60000LL
00028 # define ONE_HOUR 3600000LL
00029 # define ONE_DAY 86400000LL
00030 # define ONE_WEEK 604800000LL
00031 # define ONE_YEAR 31536000000LL
00032 #else
00033 # define ONE_SECOND 1000L
00034 # define ONE_MINUTE 60000L
00035 # define ONE_HOUR 3600000L
00036 # define ONE_DAY 86400000L
00037 # define ONE_WEEK 604800000L
00038 # define ONE_YEAR 31536000000L
00039 #endif
00040
00041 #ifdef __cplusplus
00042 extern "C" {
00043 #endif
00044
00045 BEECRYPTAPI
00046 jlong timestamp(void);
00047
00048 #ifdef __cplusplus
00049 }
00050 #endif
00051
00052 #endif