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

Version Path
xot-0.3 include/xot/defs.h
xot-0.2.1 include/xot/defs.h
xot-0.2 include/xot/defs.h
xot-0.1.42 include/xot/defs.h
xot-0.1.41 include/xot/defs.h
xot-0.1.40 include/xot/defs.h
xot-0.1.39 include/xot/defs.h
xot-0.1.38 include/xot/defs.h
xot-0.1.37 include/xot/defs.h
xot-0.1.36 include/xot/defs.h
xot-0.1.35 include/xot/defs.h
xot-0.1.34 include/xot/defs.h
xot-0.1.33 include/xot/defs.h
xot-0.1.32 include/xot/defs.h
xot-0.1.31 include/xot/defs.h
xot-0.1.30 include/xot/defs.h
xot-0.1.29 include/xot/defs.h
xot-0.1.28 include/xot/defs.h
xot-0.1.27 include/xot/defs.h
xot-0.1.26 include/xot/defs.h