Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
SkOSLibrary_posix.cpp
Go to the documentation of this file.
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 */
8#if !defined(SK_BUILD_FOR_WIN)
9
11
12#include <dlfcn.h>
13
14void* SkLoadDynamicLibrary(const char* libraryName) {
15 return dlopen(libraryName, RTLD_LAZY);
16}
17
18void* SkGetProcedureAddress(void* library, const char* functionName) {
19 return dlsym(library, functionName);
20}
21
22bool SkFreeDynamicLibrary(void* library) {
23 return dlclose(library) == 0;
24}
25
26#endif//!defined(SK_BUILD_FOR_WIN)
void * SkGetProcedureAddress(void *library, const char *functionName)
void * SkLoadDynamicLibrary(const char *libraryName)
bool SkFreeDynamicLibrary(void *library)