This is the open source Pawn interpreter ported to mbed. See here: http://www.compuphase.com/pawn/pawn.htm and here: http://code.google.com/p/pawnscript/

Dependents:   Pawn4Test

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers amxmbed.h Source File

amxmbed.h

00001 /**
00002  * Include file for the interface to mbed from Pawn interpreter.
00003  *
00004  * Copyright 2011 Pulse-Robotics, Inc.
00005  * Author: Tyler Wilson
00006  */
00007 
00008 #ifndef AMXMBED_H
00009 #define AMXMBED_H
00010 
00011 #include "amx.h"
00012 
00013 #ifdef __cplusplus
00014 extern "C" {
00015 #endif
00016 
00017 int amx_mbedInit(AMX *amx);
00018 int amx_mbedCleanup(AMX *amx);
00019 
00020 #ifdef __cplusplus
00021 }
00022 #endif
00023 
00024 #endif /* AMXMBED_H */