blob: 7c18036358ce7a5eaee4c3d198ee1e29c10503d4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/* Copyright (c) 2003-2005 krzYszcz and others.
* For information on usage and redistribution, and for a DISCLAIMER OF ALL
* WARRANTIES, see the file, "LICENSE.txt," in this distribution. */
#ifndef __LOADER_H__
#define __LOADER_H__
enum { LOADER_OK, LOADER_FAILED,
LOADER_NOFILE, LOADER_BADFILE, LOADER_NOENTRY };
int unstable_load_lib(char *dirname, char *classname);
int unstable_dirload_lib(char *dirname, char *classname);
int unstable_dirload_all(char *dirname, int beloud, int withclasses);
#endif
|