mirror of
https://github.com/Tribufu/TribufuRust
synced 2026-08-08 04:11:07 +00:00
* Generate native bindings from rust crate * Add native instance and runtime statics * Update README.md
26 lines
453 B
C++
26 lines
453 B
C++
// Copyright (c) Tribufu. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include <stdarg.h>
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
#ifdef TRIBUFU_CPP
|
|
#include <algorithm>
|
|
#include <cstdarg>
|
|
#include <cstdint>
|
|
#include <cstdlib>
|
|
#include <functional>
|
|
#include <future>
|
|
#include <iostream>
|
|
#include <memory>
|
|
#include <new>
|
|
#include <ostream>
|
|
#include <sstream>
|
|
#include <string>
|
|
#include <thread>
|
|
#include <utility>
|
|
#endif
|