Sha256: f8e4e4635c42fc70ea5f4d2fa5260dc8631616c98fc59b52502e880f6cdf8f56
Contents?: true
Size: 650 Bytes
Versions: 5
Compression:
Stored size: 650 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 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 enum {UNKNOWN = 0}; using namespace Types; }// Xot #endif//EOH
Version data entries
5 entries across 5 versions & 1 rubygems
Version | Path |
---|---|
xot-0.1.12 | include/xot/defs.h |
xot-0.1.11 | include/xot/defs.h |
xot-0.1.10 | include/xot/defs.h |
xot-0.1.9 | include/xot/defs.h |
xot-0.1.8 | include/xot/defs.h |