Files
FreeJ/bindings/luapost.i
T
2008-12-07 01:58:17 +01:00

17 lines
239 B
OpenEdge ABL

%extend Linklist
{
Entry *search(const char* what)
{
return self->search((char*)what,0);
}
}
%extend Layer {
void add_filter(Entry *filter_entry)
{
Filter *filter = (Filter*)filter_entry;
filter->apply(self);
}
}