RingRacers/libs/ACSVM/include/CAPI/Script.h
Sally Coolatta 26477941ed Attempt using ACSVM to implement
It's having trouble linking the dll on Windows currently
2022-10-03 01:23:58 -04:00

52 lines
1 KiB
C

//-----------------------------------------------------------------------------
//
// Copyright (C) 2015-2017 David Hill
//
// See COPYING for license information.
//
//-----------------------------------------------------------------------------
//
// Scripts.
//
//-----------------------------------------------------------------------------
#ifndef ACSVM__CAPI__Script_H__
#define ACSVM__CAPI__Script_H__
#include "Types.h"
#ifdef __cplusplus
#include "ACSVM/Script.hpp"
#endif
#ifdef __cplusplus
extern "C" {
#endif
//----------------------------------------------------------------------------|
// Types |
//
//
// ACSVM_ScriptName
//
// ACSVM::ScriptName mirror.
//
struct ACSVM_ScriptName
{
ACSVM_String *s;
ACSVM_Word i;
};
//----------------------------------------------------------------------------|
// Extern Functions |
//
#ifdef __cplusplus
}
#endif
#endif//ACSVM__CAPI__Script_H__