Sha256: 0bc9ea9bb2b37b3885f983175ceb0f31a298861621aa432c57def6011c3574ea

Contents?: true

Size: 493 Bytes

Versions: 4

Compression:

Stored size: 493 Bytes

Contents

// -*- c++ -*-
#pragma once
#ifndef __RUCY_RUBY_H__
#define __RUCY_RUBY_H__


#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wundef"
#include <ruby.h>
#include <ruby/encoding.h>
#pragma clang diagnostic pop


#ifdef memcpy
#undef memcpy // avoid defining ruby_nonempty_memcpy
#endif

#ifdef THIS
#undef THIS // defined by <combaseapi.h>
#endif


namespace Rucy
{


	typedef VALUE RubyValue;

	typedef int   RubyValueType;

	typedef ID    RubySymbol;


}// Rucy


#endif//EOH

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
rucy-0.3.3 include/rucy/ruby.h
rucy-0.3.2 include/rucy/ruby.h
rucy-0.3.1 include/rucy/ruby.h
rucy-0.3 include/rucy/ruby.h