add macOS implementation

This commit is contained in:
Nick Fisher
2023-09-05 23:13:59 +08:00
parent c522cd6ee9
commit 84e3124e04
457 changed files with 169627 additions and 15 deletions
+13
View File
@@ -0,0 +1,13 @@
#ifndef STANDARD_H_
#define STANDARD_H_
#include <stdint.h>
extern "C" {
extern const uint8_t STANDARD_PACKAGE[];
extern int STANDARD_STANDARD_OFFSET;
extern int STANDARD_STANDARD_SIZE;
}
#define STANDARD_STANDARD_DATA (STANDARD_PACKAGE + STANDARD_STANDARD_OFFSET)
#endif