blob: b415c0545ff5cf22a4164d8560dcc72d40a59c88 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#ifndef SLIBTOOL_METAFILE_IMPL_H
#define SLIBTOOL_METAFILE_IMPL_H
#include <slibtool/slibtool.h>
int slbt_create_object_wrapper(
const struct slbt_driver_ctx * dctx,
struct slbt_exec_ctx * ectx);
int slbt_create_library_wrapper(
const struct slbt_driver_ctx * dctx,
struct slbt_exec_ctx * ectx,
const char * arname,
const char * soname,
const char * soxyz,
const char * solnk);
#endif
|