19 lines
361 B
C
19 lines
361 B
C
#pragma once
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/* LinuxCNC source basis: src/emc/rs274ngc/interp_base.cc native loader flags. */
|
|
#define RTLD_GLOBAL 0x00100
|
|
#define RTLD_NOW 0x00002
|
|
|
|
void *dlopen(const char *filename, int flags);
|
|
void *dlsym(void *handle, const char *symbol);
|
|
char *dlerror(void);
|
|
int dlclose(void *handle);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|