Sha256: 33f2fb7e706965a619620d529ca47d1f24aa6b55aa35ee5a7400285f275f760c
Contents?: true
Size: 682 Bytes
Versions: 2
Compression:
Stored size: 682 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 enum {UNKNOWN = 0}; using namespace Types; }// Xot #endif//EOH
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
xot-0.1.14 | include/xot/defs.h |
xot-0.1.13 | include/xot/defs.h |