X-Git-Url: http://git.code-monkey.de/?p=ruby-evas.git;a=blobdiff_plain;f=src%2Frb_evas.h;h=defaa7097b7e86472d75f472fc1cd14ba9f9f322;hp=5bf0cf53d0f404d654a125f5873c0a8df7ee1b87;hb=c3202d026f3800676461ee407f2a5e46dc20e2f2;hpb=9af608c8ef88aadac161a557b27822c9defa39f0 diff --git a/src/rb_evas.h b/src/rb_evas.h index 5bf0cf5..defaa70 100644 --- a/src/rb_evas.h +++ b/src/rb_evas.h @@ -1,6 +1,4 @@ /* - * $Id: rb_evas.h 2 2004-06-19 18:55:39Z tilman $ - * * Copyright (C) 2004 Tilman Sauerbeck (tilman at code-monkey de) * * This library is free software; you can redistribute it and/or @@ -21,8 +19,16 @@ #ifndef __RB_EVAS_H #define __RB_EVAS_H -VALUE cEvas; +typedef struct { + Evas *real; + VALUE parent; +} RbEvas; +void Init_Evas (void); VALUE TO_EVAS (VALUE parent, Evas *e); +#ifndef __RB_EVAS_C +extern VALUE cEvas; +#endif + #endif