/rusxmms/librcc

To get this branch, use:
bzr branch http://suren.me/webbzr/rusxmms/librcc

« back to all changes in this revision

Viewing changes to src/engine.c

  • Committer: Suren A. Chilingaryan
  • Date: 2005-07-13 16:49:47 UTC
  • Revision ID: Arch-1:ds@dside.dyndns.org--darksoft-2004%librcc--main--0.1--patch-12
Engine Plugins

Show diffs side-by-side

added added

removed removed

Lines of Context:
143
143
 
144
144
    return ctx->internal;
145
145
}
 
146
 
 
147
rcc_language *rccEngineGetLanguage(rcc_engine_context ctx) {
 
148
    if (!ctx) return NULL;
 
149
 
 
150
    return ctx->language;
 
151
}
 
152
 
 
153
rcc_context rccEngineGetRccContext(rcc_engine_context ctx) {
 
154
    if (!ctx) return NULL;
 
155
 
 
156
    return ctx->ctx;
 
157
}