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/core/SkLeanWindows.h" 11 #include "src/ports/SkOSLibrary.h" 12 SkLoadDynamicLibrary(const char * libraryName)13void* SkLoadDynamicLibrary(const char* libraryName) { 14 return LoadLibraryA(libraryName); 15 } 16 SkGetProcedureAddress(void * library,const char * functionName)17void* SkGetProcedureAddress(void* library, const char* functionName) { 18 return reinterpret_cast<void*>(::GetProcAddress((HMODULE)library, functionName)); 19 } 20 SkFreeDynamicLibrary(void * library)21bool SkFreeDynamicLibrary(void* library) { 22 return FreeLibrary((HMODULE)library); 23 } 24 25 #endif//defined(SK_BUILD_FOR_WIN) 26