13 lines
238 B
Python
13 lines
238 B
Python
#
|
|
# Copyright(c) 2019 Intel Corporation
|
|
# SPDX-License-Identifier: BSD-3-Clause-Clear
|
|
#
|
|
from ctypes import *
|
|
|
|
lib = None
|
|
|
|
#TODO Consider changing lib to singleton
|
|
def LoadOcfLib():
|
|
global lib
|
|
lib = cdll.LoadLibrary('./libocf.so')
|