Sha256: d792b97bc2002cd36839503e6370b2d53e5a1881bfcb7aa5e35e9e85efa0f9a4
Contents?: true
Size: 659 Bytes
Versions: 29
Compression:
Stored size: 659 Bytes
Contents
// -*- c++ -*- #pragma once #ifndef __XOT_DEFS_H__ #define __XOT_DEFS_H__ #include <stddef.h> #ifdef CYGWIN typedef unsigned short ushort; typedef unsigned int uint; typedef unsigned long ulong; #endif namespace Xot { namespace Types { typedef signed char schar; typedef unsigned char uchar; #ifdef CYGWIN using ::ushort; using ::uint; using ::ulong; #else typedef unsigned short ushort; typedef unsigned int uint; typedef unsigned long ulong; #endif typedef long long longlong; typedef unsigned long long ulonglong; }// Types using namespace Types; }// Xot #endif//EOH
Version data entries
29 entries across 29 versions & 1 rubygems