[30] | 1 | /* |
---|
| 2 | * This file contains miscellaneous pieces of code which regfio.c |
---|
| 3 | * depends upon, from the Samba Subversion tree. See: |
---|
| 4 | * http://websvn.samba.org/cgi-bin/viewcvs.cgi/trunk/source/ |
---|
| 5 | * |
---|
[132] | 6 | * Copyright (C) 2005,2009 Timothy D. Morgan |
---|
[30] | 7 | * Copyright (C) 1992-2005 Samba development team |
---|
| 8 | * (see individual files under Subversion for details.) |
---|
| 9 | * |
---|
| 10 | * This program is free software; you can redistribute it and/or modify |
---|
| 11 | * it under the terms of the GNU General Public License as published by |
---|
[111] | 12 | * the Free Software Foundation; version 3 of the License. |
---|
[30] | 13 | * |
---|
| 14 | * This program is distributed in the hope that it will be useful, |
---|
| 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
| 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
| 17 | * GNU General Public License for more details. |
---|
| 18 | * |
---|
| 19 | * You should have received a copy of the GNU General Public License |
---|
| 20 | * along with this program; if not, write to the Free Software |
---|
| 21 | * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. |
---|
| 22 | * |
---|
| 23 | * $Id: smb_deps.h 134 2009-01-16 18:36:04Z tim $ |
---|
| 24 | */ |
---|
| 25 | |
---|
[132] | 26 | #ifndef _SMB_DEPS_H |
---|
| 27 | #define _SMB_DEPS_H |
---|
| 28 | |
---|
[31] | 29 | #include <stdlib.h> |
---|
[30] | 30 | #include <stdbool.h> |
---|
[134] | 31 | #include <stdint.h> |
---|
[30] | 32 | #include <stdio.h> |
---|
[31] | 33 | #include <string.h> |
---|
[30] | 34 | #include <errno.h> |
---|
| 35 | #include <fcntl.h> |
---|
| 36 | #include <sys/stat.h> |
---|
| 37 | #include <sys/types.h> |
---|
| 38 | #include <unistd.h> |
---|
| 39 | |
---|
| 40 | #include "byteorder.h" |
---|
| 41 | |
---|
| 42 | #define DEBUG(lvl,body) 0 |
---|
| 43 | |
---|
| 44 | void* zalloc(size_t size); |
---|
| 45 | void* zcalloc(size_t size, unsigned int count); |
---|
| 46 | |
---|
| 47 | /* From includes.h */ |
---|
| 48 | |
---|
[134] | 49 | #define uint8 uint8_t |
---|
| 50 | #define int16 int8_t |
---|
| 51 | #define uint16 uint16_t |
---|
| 52 | #define int32 int32_t |
---|
| 53 | #define uint32 uint32_t |
---|
[30] | 54 | |
---|
| 55 | #define MIN(a,b) ((a)<(b)?(a):(b)) |
---|
| 56 | #define MAX(a,b) ((a)>(b)?(a):(b)) |
---|
| 57 | |
---|
| 58 | extern int DEBUGLEVEL; |
---|
| 59 | |
---|
| 60 | /* End of stuff from includes.h */ |
---|
| 61 | |
---|
| 62 | /* From smb.h */ |
---|
| 63 | |
---|
| 64 | typedef struct nttime_info |
---|
| 65 | { |
---|
| 66 | uint32 low; |
---|
| 67 | uint32 high; |
---|
| 68 | } NTTIME; |
---|
| 69 | |
---|
| 70 | /* End of stuff from smb.h */ |
---|
| 71 | |
---|
| 72 | /* From lib/time.c */ |
---|
| 73 | |
---|
| 74 | #define CHAR_BIT 8 |
---|
| 75 | #define TIME_T_MIN ((time_t)0 < (time_t) -1 ? (time_t) 0 \ |
---|
| 76 | : ~ (time_t) 0 << (sizeof (time_t) * CHAR_BIT - 1)) |
---|
| 77 | #define TIME_T_MAX (~ (time_t) 0 - TIME_T_MIN) |
---|
| 78 | #define TIME_FIXUP_CONSTANT (369.0*365.25*24*60*60-(3.0*24*60*60+6.0*60*60)) |
---|
| 79 | |
---|
[84] | 80 | void unix_to_nt_time(NTTIME* nt, time_t t); |
---|
| 81 | time_t nt_time_to_unix(const NTTIME* nt); |
---|
[30] | 82 | |
---|
| 83 | /* End of stuff from lib/time.c */ |
---|
| 84 | |
---|
[132] | 85 | #endif /* _SMB_DEPS_H */ |
---|