1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2025-07-06 00:47:11 +02:00

Initial draft for I/O streams.

This commit is contained in:
Sandu Liviu Catalin
2021-03-09 00:18:07 +02:00
parent 0675c05fe7
commit 7d7fd44427
4 changed files with 1231 additions and 0 deletions

View File

@ -6,12 +6,14 @@ namespace SqMod {
// ------------------------------------------------------------------------------------------------
extern void Register_Buffer(HSQUIRRELVM vm);
extern void Register_Stream(HSQUIRRELVM vm);
extern void Register_INI(HSQUIRRELVM vm);
// ================================================================================================
void Register_IO(HSQUIRRELVM vm)
{
Register_Buffer(vm);
Register_Stream(vm);
Register_INI(vm);
}