Sha256: 4d5656d789674a7a31884a78930df45e5b66dae99453f8e158f87fcdbe3f4d56

Contents?: true

Size: 1.09 KB

Versions: 6

Compression:

Stored size: 1.09 KB

Contents

/* -*- c-file-style: "ruby"; indent-tabs-mode: nil -*- */
/************************************************
  rbatk.h -

  $Author: mutoh $
  $Date: 2005/09/15 17:30:46 $

  Copyright (C) 2003,2004 Masao Mutoh
************************************************/
#include "ruby.h"
#include <atk/atk.h>
#include <atk/atk-enum-types.h>
#include <atk/atknoopobject.h>
#include <atk/atknoopobjectfactory.h>
#include "rbgobject.h"
#include "rbatkversion.h"


#if defined(G_PLATFORM_WIN32) && !defined(RUBY_ATK_STATIC_COMPILATION)
#  ifdef RUBY_ATK_COMPILATION
#    define RUBY_ATK_VAR __declspec(dllexport)
#  else
#    define RUBY_ATK_VAR extern __declspec(dllimport)
#  endif
#else
#  define RUBY_ATK_VAR extern
#endif
                                                                                
#define RVAL2ATKOBJECT(s) ATK_OBJECT(RVAL2GOBJ(s))

extern void Init_atk_inits();
extern GType atk_text_rectangle_get_type(void);
extern GType atk_text_range_get_type(void);

RUBY_ATK_VAR VALUE mAtk;

#define ATK_TYPE_TEXT_RECTANGLE (atk_text_rectangle_get_type())
#define ATK_TYPE_TEXT_RANGE (atk_text_range_get_type())

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
atk-1.0.3-x86-mingw32 ext/atk/rbatk.h
atk-1.0.3 ext/atk/rbatk.h
atk-1.0.2-x86-mingw32 ext/atk/rbatk.h
atk-1.0.2 ext/atk/rbatk.h
atk-1.0.1 ext/atk/rbatk.h
atk-1.0.1-x86-mingw32 ext/atk/rbatk.h