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

JSMN approach.

This commit is contained in:
Sandu Liviu Catalin
2021-07-10 14:15:41 +03:00
parent 6cd9c37b86
commit ce6050cc08
3 changed files with 41 additions and 0 deletions

22
module/Library/JSON.cpp Normal file
View File

@ -0,0 +1,22 @@
// ------------------------------------------------------------------------------------------------
#include "Library/JSON.hpp"
// ------------------------------------------------------------------------------------------------
#include <sqratConst.h>
// ------------------------------------------------------------------------------------------------
#include <cstdio>
// ------------------------------------------------------------------------------------------------
namespace SqMod {
// ------------------------------------------------------------------------------------------------
// ================================================================================================
void Register_JSON(HSQUIRRELVM vm)
{
}
} // Namespace:: SqMod

17
module/Library/JSON.hpp Normal file
View File

@ -0,0 +1,17 @@
#pragma once
// ------------------------------------------------------------------------------------------------
#include "Core/Utility.hpp"
#include "Library/IO/Buffer.hpp"
// ------------------------------------------------------------------------------------------------
#define JSMN_HEADER
#include <jsmn.h>
// ------------------------------------------------------------------------------------------------
namespace SqMod {
// ------------------------------------------------------------------------------------------------
} // Namespace:: SqMod