From: Tilman Sauerbeck Date: Sat, 11 Nov 2006 12:10:09 +0000 (+0000) Subject: Resolve cWindow reference on init. X-Git-Url: http://git.code-monkey.de/?p=ruby-esmart.git;a=commitdiff_plain;h=2d5931fbc6f4c336f898072dc08aec26fcb59682 Resolve cWindow reference on init. --- diff --git a/src/esmart_trans_x11/rb_esmart_trans_x11.c b/src/esmart_trans_x11/rb_esmart_trans_x11.c index a06f168..fa8a9da 100644 --- a/src/esmart_trans_x11/rb_esmart_trans_x11.c +++ b/src/esmart_trans_x11/rb_esmart_trans_x11.c @@ -1,5 +1,5 @@ /* - * $Id: rb_esmart_trans_x11.c 356 2006-02-10 18:27:31Z tilman $ + * $Id: rb_esmart_trans_x11.c 390 2006-11-11 12:10:09Z tilman $ * * Copyright (C) 2004 Tilman Sauerbeck (tilman at code-monkey de) * @@ -27,6 +27,8 @@ #include "../rb_esmart.h" +static VALUE cWindow; + static VALUE c_init (VALUE self, VALUE evas) { CHECK_CLASS (evas, cEvas); @@ -87,11 +89,15 @@ static VALUE c_freshen (VALUE self, VALUE x, VALUE y, VALUE w, VALUE h) void Init_esmart_trans_x11 (void) { - VALUE c; + VALUE m, c; rb_require ("esmart"); rb_require ("ecore_x"); + m = rb_const_get (rb_cModule, rb_intern ("Ecore")); + m = rb_const_get (m, rb_intern ("X")); + cWindow = rb_const_get (m, rb_intern ("Window")); + c = rb_define_class_under (mEsmart, "TransX11", cEvasObject); rb_define_method (c, "initialize", c_init, 1);