idlc 1.5.14
Interface Definition Language Compiler
|
IDLC. More...
#include "idl-options.h"
Go to the source code of this file.
Enumerations | |
enum | idl_generator_t { IDL_GENERATOR_C = 0 , IDL_GENERATOR_JAVA_SCRIPT = 3 , IDL_GENERATOR_MAX_ENUM = 0x7FFFFFFF } |
Generation language. More... | |
Functions | |
idl_uint32_t | idl_version (void) |
Current library version as packed 32-bit value. | |
idl_utf8_t | idl_version_string (void) |
Current library version as human-readable string. | |
Functions of Compiler. | |
Functions for opaque type idl_compiler_t. | |
idl_result_t | idl_compiler_create (idl_compiler_t *compiler) |
Creates new compiler instance. | |
idl_compiler_t | idl_compiler_reference (idl_compiler_t compiler) |
Increments reference count. | |
void | idl_compiler_destroy (idl_compiler_t compiler) |
Releases compiler instance. | |
idl_result_t | idl_compiler_compile (idl_compiler_t compiler, idl_generator_t generator, idl_utf8_t file, idl_uint32_t source_count, const idl_source_t *sources, idl_options_t options, idl_compilation_result_t *result) |
Compile IDL. | |
IDLC.
IDLC - Interface Definition Language Compiler. It is an abstract API description language for platform- and language-independent interaction with the implemented interface.
MIT License Copyright (c) 2025 Vladimir Shaleev 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. Contributor(s): Vladimir Shaleev <vladimirshaleev@gmail.com>