blob: d2bd44c1ddefd2486ea7227784a7b67c41feddad (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef SLIBTOOL_LCONF_IMPL_H
#define SLIBTOOL_LCONF_IMPL_H
#include <stdint.h>
struct slbt_driver_ctx;
int slbt_get_lconf_flags(
struct slbt_driver_ctx * dctx,
const char * lconf,
uint64_t * flags);
#endif
|