AerScript on the read

This commit is contained in:
2018-08-01 17:04:42 +02:00
parent b0cbf5c0f6
commit 7afe2c7c41
2 changed files with 6 additions and 6 deletions

View File

@@ -1,11 +1,11 @@
#include "dummy.h"
static void PSHARP_DUMMY_CONSTANT_Const(ph7_value *pVal, void *pUserData) {
static void AER_DUMMY_CONSTANT_Const(ph7_value *pVal, void *pUserData) {
SXUNUSED(pUserData); /* cc warning */
ph7_value_bool(pVal, 1);
}
int psharp_dummy_function(ph7_context *pCtx, int nArg, ph7_value **apArg) {
int aer_dummy_function(ph7_context *pCtx, int nArg, ph7_value **apArg) {
SyString dummy;
const char *text = "Hello world from dummy module!";
SyStringInitFromBuf(&dummy, text, SyStrlen(text));