mirror of
https://github.com/Hamlib/Hamlib
synced 2026-08-13 17:32:05 -04:00
Android makefile fragments are distributed as extra distribution files by the GNU build system but are otherwise ignored. The Android build support is independent and does not rely on the GNU build system. See android/README.android for more info. Signed-off-by: Nate Bargmann <n0nb@n0nb.us>
20 lines
625 B
C
20 lines
625 B
C
/*
|
|
ltdl.h - ltdl emulation for android
|
|
Copyright (C) 2012 Ladislav Vaiz <ok1zia@nagano.cz>
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU General Public License
|
|
version 2 as published by the Free Software Foundation.
|
|
|
|
*/
|
|
|
|
typedef void *lt_dlhandle;
|
|
|
|
int lt_dlinit(void);
|
|
int lt_dlexit(void);
|
|
int lt_dladdsearchdir(const char *search_dir);
|
|
lt_dlhandle lt_dlopen(const char *filename);
|
|
lt_dlhandle lt_dlopenext(const char *filename);
|
|
int lt_dlclose(lt_dlhandle handle);
|
|
void *lt_dlsym(lt_dlhandle handle, const char *name);
|
|
const char *lt_dlerror(void);
|