1 /* 2 * Copyright 2015 Google Inc. 3 * 4 * Use of this source code is governed by a BSD-style license that can be 5 * found in the LICENSE file. 6 */ 7 #include "include/core/SkTypes.h" 8 #if !defined(SK_BUILD_FOR_WIN) 9 10 #include "src/ports/SkOSLibrary.h" 11 12 #include <dlfcn.h> 13 SkLoadDynamicLibrary(const char * libraryName)14void* SkLoadDynamicLibrary(const char* libraryName) { 15 return dlopen(libraryName, RTLD_LAZY); 16 } 17 SkGetProcedureAddress(void * library,const char * functionName)18void* SkGetProcedureAddress(void* library, const char* functionName) { 19 return dlsym(library, functionName); 20 } 21 SkFreeDynamicLibrary(void * library)22bool SkFreeDynamicLibrary(void* library) { 23 return dlclose(library) == 0; 24 } 25 26 #endif//!defined(SK_BUILD_FOR_WIN) 27