bnettime.h
上传用户:tany51
上传日期:2013-06-12
资源大小:1397k
文件大小:2k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /*
  2.  * Copyright (C) 1998  Mark Baysinger (mbaysing@ucsd.edu)
  3.  * Copyright (C) 1998,1999  Ross Combs (rocombs@cs.nmsu.edu)
  4.  * Copyright (C) 1999  Rob Crittenden (rcrit@greyoak.com)
  5.  *
  6.  * This program is free software; you can redistribute it and/or
  7.  * modify it under the terms of the GNU General Public License
  8.  * as published by the Free Software Foundation; either version 2
  9.  * of the License, or (at your option) any later version.
  10.  *
  11.  * This program is distributed in the hope that it will be useful,
  12.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14.  * GNU General Public License for more details.
  15.  *
  16.  * You should have received a copy of the GNU General Public License
  17.  * along with this program; if not, write to the Free Software
  18.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  19.  */
  20. #ifndef INCLUDED_BNETTIME_TYPES
  21. #define INCLUDED_BNETTIME_TYPES
  22. typedef struct
  23. {
  24. #ifdef BNETTIME_INTERNAL_ACCESS
  25.     unsigned int u;
  26.     unsigned int l;
  27. #else
  28.     unsigned int _private1;
  29.     unsigned int _private2;
  30. #endif
  31. } t_bnettime;
  32. #endif
  33. /*****/
  34. #ifndef JUST_NEED_TYPES
  35. #ifndef INCLUDED_BNETTIME_PROTOS
  36. #define INCLUDED_BNETTIME_PROTOS
  37. #define JUST_NEED_TYPES
  38. #ifdef TIME_WITH_SYS_TIME
  39. # include <sys/time.h>
  40. # include <time.h>
  41. #else
  42. # if HAVE_SYS_TIME_H
  43. #  include <sys/time.h>
  44. # else
  45. #  include <time.h>
  46. # endif
  47. #endif
  48. #include "common/bn_type.h"
  49. #undef JUST_NEED_TYPES
  50. extern t_bnettime secs_to_bnettime(double secs) ;
  51. extern double bnettime_to_secs(t_bnettime bntime) ;
  52. extern t_bnettime time_to_bnettime(time_t stdtime, unsigned int usec) ;
  53. extern time_t bnettime_to_time(t_bnettime bntime) ;
  54. extern t_bnettime bnettime(void);
  55. extern char const * bnettime_get_str(t_bnettime bntime);
  56. extern int bnettime_set_str(t_bnettime * bntime, char const * timestr);
  57. extern int local_tzbias(void);
  58. extern t_bnettime bnettime_add_tzbias(t_bnettime bntime, int tzbias);
  59. extern void bnettime_to_bn_long(t_bnettime in, bn_long * out);
  60. extern void bn_long_to_bnettime(bn_long in, t_bnettime * out);
  61. #endif
  62. #endif