#include "overlay.h" #include "interpreter.h" int main(int argc, char *argv[]) { interpreterInit(); Overlay *o = createOverlay("Test", "", 1, 0); if (!o) { printf("Error creating overlay.\n"); return 0; } printf("Overlay name = %s, owner email : %s, description : %s, priority : %d, it is %sofficial.\n", overlayName(o), overlayOwnerEmail(o), overlayDescription(o), overlayPriority(o), overlayIsOfficial(o) ? "" : "not "); interpreterFinalize(); return 0; }