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 DynamicLoadLibrary(const char * libraryName)14void* DynamicLoadLibrary(const char* libraryName) { 15 return dlopen(libraryName, RTLD_LAZY); 16 } 17 GetProcedureAddress(void * library,const char * functionName)18void* GetProcedureAddress(void* library, const char* functionName) { 19 return dlsym(library, functionName); 20 } 21 #endif//!defined(SK_BUILD_FOR_WIN) 22