Fantasizing about C API and plugins

This commit is contained in:
2026-01-16 20:28:08 +01:00
parent 133994d2ef
commit 33a0b241ef
5 changed files with 232 additions and 9 deletions

27
include/stdafx.h Normal file
View File

@@ -0,0 +1,27 @@
#ifndef _STDAFX_H
#define _STDAFX_H
typedef unsigned long size_t;
typedef long ssize_t;
typedef long ptrdiff_t;
typedef long intptr_t;
typedef unsigned long uintptr_t;
#define NULL ((void *)0)
#define bool _Bool
#define true 1
#define false 0
#define __bool_true_false_are_defined 1
typedef signed char int8_t;
typedef short int16_t;
typedef int int32_t;
typedef long int64_t;
typedef unsigned char uint8_t;
typedef unsigned short uint16_t;
typedef unsigned int uint32_t;
typedef unsigned long uint64_t;
#endif