2004-07-04から1日間の記事一覧

[C言語][Preprocess]

#define debug_print(...) \ printf("debug: " __VA_ARGS__)

Prothon - changes note 0.1.0 to 0.1.1

"attrs" methods is now "attr_" attribute which contains attributes. the sample x extension module code here does not work with 0.1.0.

[Prothon] C extension

Mini.c /* Minimum extension module */ #include "prothon/prothon_dll.h" MODULE_DECLARE(Mini); MODULE_START(Mini) { Mini_OBJ = NEW_OBJ(NULL); MODULE_SET_DOC(Mini, "Sample module"); MODULE_ADD_TO_BASE(Mini); } DEF(Mini, sayHello, NULL) { retu…