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 "SkTypes.h" 8 #if defined(SK_BUILD_FOR_WIN) 9 10 #include "SkOSLibrary.h" 11 #include "SkLeanWindows.h" 12 DynamicLoadLibrary(const char * libraryName)13void* DynamicLoadLibrary(const char* libraryName) { 14 return LoadLibraryA(libraryName); 15 } 16 GetProcedureAddress(void * library,const char * functionName)17void* GetProcedureAddress(void* library, const char* functionName) { 18 return reinterpret_cast<void*>(::GetProcAddress((HMODULE)library, functionName)); 19 } 20 21 #endif//defined(SK_BUILD_FOR_WIN) 22