Mercurial > games > semicongine
comparison fuhtark_test/include/dlfcn.h @ 1500:91c8c3b7cbf0
add: futhark tests for generating vulkan api
| author | sam <sam@basx.dev> |
|---|---|
| date | Wed, 26 Nov 2025 21:36:48 +0700 |
| parents | |
| children |
comparison
equal
deleted
inserted
replaced
| 1499:1f58458b7ef7 | 1500:91c8c3b7cbf0 |
|---|---|
| 1 #ifndef __DLFCN_H__ | |
| 2 # define __DLFCN_H__ | |
| 3 /* | |
| 4 * $Id: dlfcn.h,v 1.1 2003/04/29 20:21:35 tchamp Exp $ | |
| 5 * $Name: $ | |
| 6 * | |
| 7 * This file is set under public domain. Please read disclaimer. | |
| 8 */ | |
| 9 extern void *dlopen (const char *file, int mode); | |
| 10 extern int dlclose (void *handle); | |
| 11 extern void *dlsym (void * handle, const char * name); | |
| 12 extern char *dlerror (void); | |
| 13 | |
| 14 /* These don't mean anything on windows */ | |
| 15 #define RTLD_NEXT ((void *) -1l) | |
| 16 #define RTLD_DEFAULT ((void *) 0) | |
| 17 #define RTLD_LAZY -1 | |
| 18 #define RTLD_NOW -1 | |
| 19 #define RTLD_BINDING_MASK -1 | |
| 20 #define RTLD_NOLOAD -1 | |
| 21 #define RTLD_GLOBAL -1 | |
| 22 | |
| 23 #endif /* __DLFCN_H__ */ | |
| 24 |
