bemenu 1.0.0
Dynamic menu library and client program inspired by dmenu
cdl.h
1 #ifndef __chck_cdl__
2 #define __chck_cdl__
3 
4 void* chckDlLoad(const char *file, const char **outError);
5 void* chckDlLoadSymbol(void *handle, const char *name, const char **outError);
6 void chckDlUnload(void *handle);
7 
8 #endif /* __chck_cdl__ */
9 
10 /* vim: set ts=8 sw=3 tw=0 :*/