mdflib-sys 0.2.2

Low-level FFI bindings for mdflib
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*
* Copyright 2024 Ingemar Hedvall
* SPDX-License-Identifier: MIT
 */

#include "pymdf.h"

#include <pybind11/pybind11.h>

using namespace pymdf;
using namespace pybind11;

PYBIND11_MODULE(pymdf, m) {
  InitSampleRecord(m);
}