lbry-rocksdb/rocksdb/table_factory.pxd

9 lines
273 B
Cython
Raw Normal View History

from libc.stdint cimport uint32_t
cdef extern from "rocksdb/table.h" namespace "rocksdb":
cdef cppclass TableFactory:
TableFactory()
cdef TableFactory* NewBlockBasedTableFactory()
cdef TableFactory* NewPlainTableFactory(uint32_t, int, double, size_t)