48 lines
2.1 KiB
C
48 lines
2.1 KiB
C
// The MIT License (MIT)
|
|
//
|
|
// Copyright (C) 2026 Scott Duensing
|
|
//
|
|
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
// of this software and associated documentation files (the "Software"), to
|
|
// deal in the Software without restriction, including without limitation the
|
|
// rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
|
// sell copies of the Software, and to permit persons to whom the Software is
|
|
// furnished to do so, subject to the following conditions:
|
|
//
|
|
// The above copyright notice and this permission notice shall be included in
|
|
// all copies or substantial portions of the Software.
|
|
//
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
|
// IN THE SOFTWARE.
|
|
|
|
// formcfm.h -- Compiled form format
|
|
//
|
|
// Binary serialization of .frm layout data for standalone apps.
|
|
// Widget types and layout stored as strings for stability across
|
|
// widget set changes. No BASIC source code is included.
|
|
|
|
#ifndef DVXBASIC_FORMCFM_H
|
|
#define DVXBASIC_FORMCFM_H
|
|
|
|
#include "formrt.h"
|
|
|
|
#include <stdint.h>
|
|
|
|
// Serialize a .frm source string to compiled form binary.
|
|
// Returns a malloc'd buffer (caller frees) and sets *outLen.
|
|
uint8_t *basFormCompile(const char *frmSource, int32_t frmLen, int32_t *outLen);
|
|
|
|
// Load a compiled form binary into the form runtime.
|
|
// Creates the form window and all controls.
|
|
BasFormT *basFormLoadCompiled(BasFormRtT *rt, const uint8_t *data, int32_t dataLen);
|
|
|
|
// Extract the form name from a compiled form binary without loading it.
|
|
// Writes to nameBuf (up to bufSize-1 chars). Returns true on success.
|
|
bool basFormGetCompiledName(const uint8_t *data, int32_t dataLen, char *nameBuf, int32_t bufSize);
|
|
|
|
#endif // DVXBASIC_FORMCFM_H
|