X-Git-Url: http://git.code-monkey.de/?a=blobdiff_plain;f=src%2Frb_evas.h;h=defaa7097b7e86472d75f472fc1cd14ba9f9f322;hb=HEAD;hp=8e6488acf6d9deaf65c26eda42bd21e1bf08cd89;hpb=08a63f63dbe7a5ffa9f04526c68b5d298c2e5f41;p=ruby-evas.git diff --git a/src/rb_evas.h b/src/rb_evas.h index 8e6488a..defaa70 100644 --- a/src/rb_evas.h +++ b/src/rb_evas.h @@ -1,6 +1,4 @@ /* - * $Id: rb_evas.h 42 2004-07-25 16:08:00Z tilman $ - * * Copyright (C) 2004 Tilman Sauerbeck (tilman at code-monkey de) * * This library is free software; you can redistribute it and/or @@ -21,9 +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