This commit is contained in:
root
2024-04-24 10:25:44 +08:00
parent 627bf43ee3
commit 248388a322
5271 changed files with 3753425 additions and 803 deletions

32
include/l_squirrel.h Normal file
View File

@@ -0,0 +1,32 @@
#pragma once
#ifndef l_squirrel
#define l_squirrel
// #define SQUNICODE
#define NO_COMPILER
#include "squirrel.h"
#include "sqstdaux.h"
#include "sqstdblob.h"
#include "sqstdio.h"
#include "sqstdmath.h"
#include "sqstdstring.h"
#include "sqstdsystem.h"
#include "l_squirrel_register.hpp"
#include "Tool.h"
#include <map>
#include <fstream>
#include <sstream>
#include <iostream>
#include <stdarg.h>
#include <mutex>
#ifdef SQUNICODE
#define scvprintf vfwprintf
#define scfprintf fwprintf
#else
#define scvprintf vfprintf
#define scfprintf fprintf
#endif
void InitSquirrel();
#endif