Sha256: 527c0151a089b8ce3fcd4dbaa33cb573de6b432c3a1ab2557d4af736aa0b8335

Contents?: true

Size: 624 Bytes

Versions: 4

Compression:

Stored size: 624 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};


}// Xot


#endif//EOH

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
xot-0.1.7 include/xot/defs.h
xot-0.1.6 include/xot/defs.h
xot-0.1.5 include/xot/defs.h
xot-0.1.4 include/xot/defs.h