Home | Info | Community | Development | myReactOS | Contact Us
ReactOS Development > Doxygendlopen.h
Go to the documentation of this file.
00001 /* 00002 * Mesa 3-D graphics library 00003 * 00004 * Copyright (C) 1999-2008 Brian Paul All Rights Reserved. 00005 * 00006 * Permission is hereby granted, free of charge, to any person obtaining a 00007 * copy of this software and associated documentation files (the "Software"), 00008 * to deal in the Software without restriction, including without limitation 00009 * the rights to use, copy, modify, merge, publish, distribute, sublicense, 00010 * and/or sell copies of the Software, and to permit persons to whom the 00011 * Software is furnished to do so, subject to the following conditions: 00012 * 00013 * The above copyright notice and this permission notice shall be included 00014 * in all copies or substantial portions of the Software. 00015 * 00016 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS 00017 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 00018 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 00019 * BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN 00020 * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 00021 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 00022 */ 00023 00024 00025 #ifndef DLOPEN_H 00026 #define DLOPEN_H 00027 00028 00029 typedef void (*GenericFunc)(void); 00030 00031 00032 extern void * 00033 _mesa_dlopen(const char *libname, int flags); 00034 00035 extern GenericFunc 00036 _mesa_dlsym(void *handle, const char *fname); 00037 00038 extern void 00039 _mesa_dlclose(void *handle); 00040 00041 00042 #endif Generated on Sat May 26 2012 04:19:02 for ReactOS by
1.7.6.1
|