X-Git-Url: http://mj.ucw.cz/gitweb/?a=blobdiff_plain;ds=sidebyside;f=ucw%2Fconfig.h;h=88168d1a245bf964f356f658c7b0241034a173db;hb=05ffab94be8da943cffb8fb30d7073ab78aef94c;hp=a43e9ea5e2bde7454bae1c67fcd2bf729928f5cb;hpb=2ac260ae8694188410a408cd8c379a2fe45e4ee5;p=libucw.git diff --git a/ucw/config.h b/ucw/config.h index a43e9ea5..88168d1a 100644 --- a/ucw/config.h +++ b/ucw/config.h @@ -1,7 +1,7 @@ /* * UCW Library -- Configuration-Dependent Definitions * - * (c) 1997--2009 Martin Mares + * (c) 1997--2012 Martin Mares * (c) 2006 Robert Spalek * * This software may be freely distributed and used according to the terms @@ -37,11 +37,10 @@ typedef uint64_t u64; /** Exactly 64 bits, unsigned **/ typedef int64_t s64; /** Exactly 64 bits, signed **/ typedef unsigned int uns; /** A better pronounceable alias for `unsigned int` **/ -typedef u32 ucw_time_t; /** Seconds since UNIX epoch **/ -typedef s64 timestamp_t; /** Milliseconds since UNIX epoch **/ +typedef s64 timestamp_t; /** Milliseconds since an unknown epoch **/ -#ifdef CONFIG_LARGE_FILES -typedef s64 ucw_off_t; /** File position (either 32- or 64-bit, depending on `CONFIG_LARGE_FILES`). **/ +#ifdef CONFIG_UCW_LARGE_FILES +typedef s64 ucw_off_t; /** File position (either 32- or 64-bit, depending on `CONFIG_UCW_LARGE_FILES`). **/ #else typedef s32 ucw_off_t; #endif