// Copyright (c) 1997 David Engberg All rights reserved // $Id: long64.h,v 1.1 1997/11/15 23:51:14 geppetto Exp $ #ifndef _long64_h #define _long64_h // There doesn't seem to be a standard way to declare 64-bit integers. Gnu // uses 'long long' and MS VC++ uses '__int64'. This tries to unify the // various forms. #ifndef long64 #ifdef __GNUG__ #define long64 long long #elif defined( WIN32 ) #define long64 __int64 #endif #endif #endif // _long64_h