Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 5079 → Rev 5080

/contrib/sdk/sources/Mesa/src/gallium/auxiliary/util/u_dl.c
30,27 → 30,17
#include "pipe/p_config.h"
#include "pipe/p_compiler.h"
 
#if defined(PIPE_OS_UNIX)
#include <dlfcn.h>
#endif
#if defined(PIPE_OS_WINDOWS)
#include <windows.h>
#endif
 
#include "u_dl.h"
#include "u_pointer.h"
 
void* load_library(const char *name);
void *get_proc_address(void *module, const char *proc_name);
 
struct util_dl_library *
util_dl_open(const char *filename)
{
#if defined(PIPE_OS_UNIX)
return (struct util_dl_library *)dlopen(filename, RTLD_LAZY | RTLD_GLOBAL);
#elif defined(PIPE_OS_WINDOWS)
return (struct util_dl_library *)LoadLibraryA(filename);
#else
return NULL;
#endif
return (struct util_dl_library *)load_library(filename);
}
 
 
58,13 → 48,7
util_dl_get_proc_address(struct util_dl_library *library,
const char *procname)
{
#if defined(PIPE_OS_UNIX)
return (util_dl_proc) pointer_to_func(dlsym((void *)library, procname));
#elif defined(PIPE_OS_WINDOWS)
return (util_dl_proc)GetProcAddress((HMODULE)library, procname);
#else
return (util_dl_proc)NULL;
#endif
return (util_dl_proc)get_proc_address(library, procname);
}
 
 
71,13 → 55,7
void
util_dl_close(struct util_dl_library *library)
{
#if defined(PIPE_OS_UNIX)
dlclose((void *)library);
#elif defined(PIPE_OS_WINDOWS)
FreeLibrary((HMODULE)library);
#else
(void)library;
#endif
}
 
 
84,11 → 62,5
const char *
util_dl_error(void)
{
#if defined(PIPE_OS_UNIX)
return dlerror();
#elif defined(PIPE_OS_WINDOWS)
return "unknown error";
#else
return "unknown error";
#endif
}