/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/plugin.h

  • Committer: Suren A. Chilingaryan
  • Date: 2005-06-16 23:14:30 UTC
  • Revision ID: Arch-1:ds@dside.dyndns.org--darksoft-2004%librcc--main--0.1--base-0
Initial Import

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef _RCC_PLUGIN_H
 
2
#define _RCC_PLUGIN_H
 
3
#include "enca.h"
 
4
 
 
5
#ifdef RCC_ENCA_DYNAMIC
 
6
# define RCC_PLUGINS
 
7
#endif /* RCC_ENCA_DYNAMIC */
 
8
 
 
9
typedef void *rcc_library_handle;
 
10
 
 
11
rcc_library_handle rccLibraryOpen(char *filename);
 
12
void rccLibraryClose(rcc_library_handle handle);
 
13
void* rccLibraryFind(rcc_library_handle handle, const char *symbol);
 
14
 
 
15
#endif /* _RCC_PLUGIN_H */