├── .gitattributes ├── .gitignore ├── .vimrc ├── .vscode └── settings.json ├── AUTHORS.md ├── CHANGES.txt ├── CMakeLists.txt ├── FAQ.md ├── HISTORY.md ├── HOW_YOU_CAN_HELP.md ├── INSTALL.md ├── KNOWN_ISSUES.md ├── LICENSE ├── NEWS.md ├── README.md ├── README.txt ├── TODO.md ├── bin └── readme.html ├── clean_cmake.sh ├── cmake ├── BuildType.cmake ├── LanguageFullVersion.cmake ├── Pantheios-config.cmake.in └── TargetMacros.cmake ├── examples ├── CMakeLists.txt ├── c │ ├── CMakeLists.txt │ ├── example.c.101 │ │ ├── CMakeLists.txt │ │ ├── example.c.101.c │ │ ├── implicit_link.cpp │ │ └── vc6 │ │ │ └── example.c.101.dsp │ ├── example.c.N │ │ ├── CMakeLists.txt │ │ ├── example.c.N.c │ │ ├── implicit_link.cpp │ │ └── vc6 │ │ │ └── example.c.N.dsp │ ├── example.c.assert │ │ ├── CMakeLists.txt │ │ ├── example.c.assert.c │ │ ├── implicit_link.cpp │ │ └── vc6 │ │ │ └── example.c.assert.dsp │ ├── example.c.core.pantheios_logprintf │ │ ├── CMakeLists.txt │ │ ├── example.c.core.pantheios_logprintf.c │ │ ├── implicit_link.cpp │ │ └── vc6 │ │ │ └── example.c.core.pantheios_logprintf.dsp │ ├── example.c.extended_severity │ │ ├── CMakeLists.txt │ │ ├── example.c.extended_severity.c │ │ ├── implicit_link.cpp │ │ └── vc6 │ │ │ └── example.c.extended_severity.dsp │ ├── example.c.log_n │ │ ├── CMakeLists.txt │ │ ├── example.c.log_n.c │ │ ├── implicit_link.cpp │ │ └── vc6 │ │ │ └── example.c.log_n.dsp │ ├── pantheios.examples.c.vc6.dsw │ └── util │ │ ├── CMakeLists.txt │ │ ├── example.c.util.getcurrenttime │ │ ├── CMakeLists.txt │ │ ├── example.c.util.getcurrenttime.c │ │ ├── implicit_link.cpp │ │ └── vc6 │ │ │ └── example.c.util.getcurrenttime.dsp │ │ ├── example.c.util.gethostname │ │ ├── CMakeLists.txt │ │ ├── example.c.util.gethostname.c │ │ ├── implicit_link.cpp │ │ └── vc6 │ │ │ └── example.c.util.gethostname.dsp │ │ └── pantheios.examples.c.util.vc6.dsw ├── cpp │ ├── CMakeLists.txt │ ├── backends │ │ ├── CMakeLists.txt │ │ ├── example.cpp.backends.callback │ │ │ ├── CMakeLists.txt │ │ │ ├── example.cpp.backends.callback.cpp │ │ │ ├── implicit_link.cpp │ │ │ └── vc6 │ │ │ │ └── example.cpp.backends.callback.dsp │ │ ├── example.cpp.backends.file.callback │ │ │ ├── CMakeLists.txt │ │ │ ├── example.cpp.backends.file.callback.cpp │ │ │ ├── implicit_link.cpp │ │ │ └── vc6 │ │ │ │ └── example.cpp.backends.file.callback.dsp │ │ ├── example.cpp.backends.file.lrsplit │ │ │ ├── CMakeLists.txt │ │ │ ├── example.cpp.backends.file.lrsplit.cpp │ │ │ ├── implicit_link.cpp │ │ │ └── vc6 │ │ │ │ └── example.cpp.backends.file.lrsplit.dsp │ │ ├── example.cpp.backends.file │ │ │ ├── CMakeLists.txt │ │ │ ├── example.cpp.backends.file.cpp │ │ │ ├── implicit_link.cpp │ │ │ └── vc6 │ │ │ │ └── example.cpp.backends.file.dsp │ │ ├── example.cpp.backends.mx.1 │ │ │ ├── CMakeLists.txt │ │ │ ├── example.cpp.backends.mx.1.cpp │ │ │ ├── implicit_link.cpp │ │ │ └── vc6 │ │ │ │ └── example.cpp.backends.mx.1.dsp │ │ ├── example.cpp.backends.mx.2 │ │ │ ├── CMakeLists.txt │ │ │ ├── example.cpp.backends.mx.2.cpp │ │ │ ├── implicit_link.cpp │ │ │ └── vc6 │ │ │ │ └── example.cpp.backends.mx.2.dsp │ │ └── pantheios.examples.cpp.backends.vc6.dsw │ ├── contract │ │ ├── CMakeLists.txt │ │ ├── example.cpp.contract.PANTHEIOS_ASSERT │ │ │ ├── CMakeLists.txt │ │ │ ├── example.cpp.contract.PANTHEIOS_ASSERT.cpp │ │ │ ├── implicit_link.cpp │ │ │ └── vc6 │ │ │ │ └── example.cpp.contract.PANTHEIOS_ASSERT.dsp │ │ ├── example.cpp.contract.PANTHEIOS_MESSAGE_ASSERT │ │ │ ├── CMakeLists.txt │ │ │ ├── example.cpp.contract.PANTHEIOS_MESSAGE_ASSERT.cpp │ │ │ ├── implicit_link.cpp │ │ │ └── vc6 │ │ │ │ └── example.cpp.contract.PANTHEIOS_MESSAGE_ASSERT.dsp │ │ └── pantheios.examples.cpp.contract.vc6.dsw │ ├── custom │ │ ├── CMakeLists.txt │ │ ├── example.cpp.custom.wrap_log4cplus │ │ │ └── example.cpp.custom.wrap_log4cplus.cpp │ │ ├── example.cpp.custom.wrap_log4cxx │ │ │ └── example.cpp.custom.wrap_log4cxx.cpp │ │ └── pantheios.examples.cpp.custom.vc6.dsw │ ├── format │ │ ├── CMakeLists.txt │ │ ├── example.cpp.format.highres │ │ │ ├── CMakeLists.txt │ │ │ ├── example.cpp.format.highres.cpp │ │ │ ├── implicit_link.cpp │ │ │ └── vc6 │ │ │ │ └── example.cpp.format.highres.dsp │ │ ├── example.cpp.format.lowres │ │ │ ├── CMakeLists.txt │ │ │ ├── example.cpp.format.lowres.cpp │ │ │ ├── implicit_link.cpp │ │ │ └── vc6 │ │ │ │ └── example.cpp.format.lowres.dsp │ │ ├── example.cpp.format.pad │ │ │ ├── CMakeLists.txt │ │ │ ├── example.cpp.format.pad.cpp │ │ │ ├── implicit_link.cpp │ │ │ └── vc6 │ │ │ │ └── example.cpp.format.pad.dsp │ │ └── pantheios.examples.cpp.format.vc6.dsw │ ├── frontends │ │ ├── CMakeLists.txt │ │ ├── example.cpp.frontends.custom │ │ │ ├── CMakeLists.txt │ │ │ ├── example.cpp.frontends.custom.cpp │ │ │ ├── implicit_link.cpp │ │ │ └── vc6 │ │ │ │ └── example.cpp.frontends.custom.dsp │ │ └── pantheios.examples.cpp.frontends.vc6.dsw │ ├── inserters │ │ ├── CMakeLists.txt │ │ ├── example.cpp.inserter.args │ │ │ ├── CMakeLists.txt │ │ │ ├── example.cpp.inserter.args.cpp │ │ │ ├── implicit_link.cpp │ │ │ └── vc6 │ │ │ │ └── example.cpp.inserter.args.dsp │ │ ├── example.cpp.inserter.b │ │ │ ├── CMakeLists.txt │ │ │ ├── example.cpp.inserter.b.cpp │ │ │ ├── implicit_link.cpp │ │ │ └── vc6 │ │ │ │ └── example.cpp.inserter.b.dsp │ │ ├── example.cpp.inserter.b64 │ │ │ ├── CMakeLists.txt │ │ │ ├── example.cpp.inserter.b64.cpp │ │ │ ├── implicit_link.cpp │ │ │ └── vc6 │ │ │ │ └── example.cpp.inserter.b64.dsp │ │ ├── example.cpp.inserter.blob │ │ │ ├── CMakeLists.txt │ │ │ ├── example.cpp.inserter.blob.cpp │ │ │ ├── implicit_link.cpp │ │ │ └── vc6 │ │ │ │ └── example.cpp.inserter.blob.dsp │ │ ├── example.cpp.inserter.character │ │ │ ├── CMakeLists.txt │ │ │ ├── example.cpp.inserter.character.cpp │ │ │ ├── implicit_link.cpp │ │ │ └── vc6 │ │ │ │ └── example.cpp.inserter.character.dsp │ │ ├── example.cpp.inserter.hex_ptr │ │ │ ├── CMakeLists.txt │ │ │ ├── example.cpp.inserter.hex_ptr.cpp │ │ │ ├── implicit_link.cpp │ │ │ └── vc6 │ │ │ │ └── example.cpp.inserter.hex_ptr.dsp │ │ ├── example.cpp.inserter.hostid │ │ │ ├── CMakeLists.txt │ │ │ ├── example.cpp.inserter.hostid.cpp │ │ │ ├── implicit_link.cpp │ │ │ └── vc6 │ │ │ │ └── example.cpp.inserter.hostid.dsp │ │ ├── example.cpp.inserter.i │ │ │ ├── CMakeLists.txt │ │ │ ├── example.cpp.inserter.i.cpp │ │ │ ├── implicit_link.cpp │ │ │ └── vc6 │ │ │ │ └── example.cpp.inserter.i.dsp │ │ ├── example.cpp.inserter.integer │ │ │ ├── CMakeLists.txt │ │ │ ├── example.cpp.inserter.integer.cpp │ │ │ ├── implicit_link.cpp │ │ │ └── vc6 │ │ │ │ └── example.cpp.inserter.integer.dsp │ │ ├── example.cpp.inserter.m2w │ │ │ ├── CMakeLists.txt │ │ │ ├── example.cpp.inserter.m2w.cpp │ │ │ └── implicit_link.cpp │ │ ├── example.cpp.inserter.p │ │ │ ├── CMakeLists.txt │ │ │ ├── example.cpp.inserter.p.cpp │ │ │ ├── implicit_link.cpp │ │ │ └── vc6 │ │ │ │ └── example.cpp.inserter.p.dsp │ │ ├── example.cpp.inserter.pointer │ │ │ ├── CMakeLists.txt │ │ │ ├── example.cpp.inserter.pointer.cpp │ │ │ ├── implicit_link.cpp │ │ │ └── vc6 │ │ │ │ └── example.cpp.inserter.pointer.dsp │ │ ├── example.cpp.inserter.processid │ │ │ ├── CMakeLists.txt │ │ │ ├── example.cpp.inserter.processid.cpp │ │ │ ├── implicit_link.cpp │ │ │ └── vc6 │ │ │ │ └── example.cpp.inserter.processid.dsp │ │ ├── example.cpp.inserter.real │ │ │ ├── CMakeLists.txt │ │ │ ├── example.cpp.inserter.real.cpp │ │ │ ├── implicit_link.cpp │ │ │ └── vc6 │ │ │ │ └── example.cpp.inserter.real.dsp │ │ ├── example.cpp.inserter.threadid │ │ │ ├── CMakeLists.txt │ │ │ ├── example.cpp.inserter.threadid.cpp │ │ │ ├── implicit_link.cpp │ │ │ └── vc6 │ │ │ │ └── example.cpp.inserter.threadid.dsp │ │ ├── example.cpp.inserter.w2m │ │ │ ├── CMakeLists.txt │ │ │ ├── example.cpp.inserter.w2m.cpp │ │ │ └── implicit_link.cpp │ │ ├── example.cpp.inserter.xi │ │ │ ├── CMakeLists.txt │ │ │ ├── example.cpp.inserter.xi.cpp │ │ │ ├── implicit_link.cpp │ │ │ └── vc6 │ │ │ │ └── example.cpp.inserter.xi.dsp │ │ ├── example.cpp.inserter.xp │ │ │ ├── CMakeLists.txt │ │ │ ├── example.cpp.inserter.xp.cpp │ │ │ ├── implicit_link.cpp │ │ │ └── vc6 │ │ │ │ └── example.cpp.inserter.xp.dsp │ │ └── pantheios.examples.cpp.inserters.vc6.dsw │ ├── linking │ │ ├── CMakeLists.txt │ │ ├── example.cpp.linking.implicit_link_1 │ │ │ ├── example.cpp.linking.implicit_link_1.cpp │ │ │ └── vc6 │ │ │ │ └── example.cpp.linking.implicit_link_1.dsp │ │ └── pantheios.examples.cpp.linking.vc6.dsw │ ├── misc │ │ ├── CMakeLists.txt │ │ ├── example.cpp.misc.101 │ │ │ ├── CMakeLists.txt │ │ │ ├── example.cpp.misc.101.cpp │ │ │ ├── implicit_link.cpp │ │ │ └── vc6 │ │ │ │ └── example.cpp.misc.101.dsp │ │ ├── example.cpp.misc.custom_type_1 │ │ │ ├── CMakeLists.txt │ │ │ ├── example.cpp.misc.custom_type_1.cpp │ │ │ ├── implicit_link.cpp │ │ │ └── vc6 │ │ │ │ └── example.cpp.misc.custom_type_1.dsp │ │ ├── example.cpp.misc.extended_severity_information │ │ │ ├── CMakeLists.txt │ │ │ ├── example.cpp.misc.extended_severity_information.cpp │ │ │ ├── implicit_link.cpp │ │ │ └── vc6 │ │ │ │ └── example.cpp.misc.extended_severity_information.dsp │ │ ├── example.cpp.misc.hetero1 │ │ │ ├── CMakeLists.txt │ │ │ ├── example.cpp.misc.hetero1.cpp │ │ │ ├── implicit_link.cpp │ │ │ └── vc6 │ │ │ │ └── example.cpp.misc.hetero1.dsp │ │ ├── example.cpp.misc.no_namespace │ │ │ ├── CMakeLists.txt │ │ │ ├── example.cpp.misc.no_namespace.cpp │ │ │ ├── implicit_link.cpp │ │ │ └── vc6 │ │ │ │ └── example.cpp.misc.no_namespace.dsp │ │ ├── example.cpp.misc.strings │ │ │ ├── CMakeLists.txt │ │ │ ├── example.cpp.misc.strings.cpp │ │ │ ├── implicit_link.cpp │ │ │ └── vc6 │ │ │ │ └── example.cpp.misc.strings.dsp │ │ └── pantheios.examples.cpp.misc.vc6.dsw │ ├── pantheios.examples.cpp.vc6.dsw │ ├── tracing │ │ ├── CMakeLists.txt │ │ ├── example.cpp.tracing.standard │ │ │ ├── CMakeLists.txt │ │ │ ├── example.cpp.tracing.standard.cpp │ │ │ └── implicit_link.cpp │ │ └── example.cpp.tracing.with_function │ │ │ ├── CMakeLists.txt │ │ │ ├── example.cpp.tracing.with_function.cpp │ │ │ └── implicit_link.cpp │ └── util │ │ ├── CMakeLists.txt │ │ └── example.cpp.util.strdup │ │ ├── CMakeLists.txt │ │ ├── example.cpp.util.strdup.cpp │ │ ├── implicit_link.cpp │ │ └── vc6 │ │ └── example.cpp.util.strdup.dsp └── readme.html ├── include ├── pantheios │ ├── assert.h │ ├── backend.h │ ├── backends │ │ ├── be.N.h │ │ ├── be.lrsplit.h │ │ ├── bec.ACE.h │ │ ├── bec.COMErrorObject.h │ │ ├── bec.WindowsConsole.h │ │ ├── bec.WindowsDebugger.h │ │ ├── bec.WindowsEventLog.h │ │ ├── bec.WindowsMessageBox.h │ │ ├── bec.WindowsSyslog.h │ │ ├── bec.console.h │ │ ├── bec.fail.h │ │ ├── bec.file.h │ │ ├── bec.fprintf.h │ │ ├── bec.null.h │ │ ├── bec.speech.h │ │ ├── bec.syslog.h │ │ └── bec.test.h │ ├── fileline.h │ ├── frontend.h │ ├── frontends │ │ ├── fe.N.h │ │ ├── fe.WindowsRegistry.h │ │ ├── fe.all.h │ │ ├── fe.fail.h │ │ ├── fe.null.h │ │ ├── fe.simple.h │ │ └── stock.h │ ├── generated │ │ ├── log_dispatch_functions.h │ │ ├── log_dispatch_functions.hpp │ │ ├── log_functions.h │ │ ├── log_functions.hpp │ │ └── log_sev_functions.hpp │ ├── implicit_link │ │ ├── appl.h │ │ ├── be.ACE.h │ │ ├── be.COMErrorObject.WithCallback.h │ │ ├── be.COMErrorObject.h │ │ ├── be.N.h │ │ ├── be.WindowsConsole.WithCallback.h │ │ ├── be.WindowsConsole.h │ │ ├── be.WindowsDebugger.WithCallback.h │ │ ├── be.WindowsDebugger.h │ │ ├── be.WindowsEventLog.WithCallback.h │ │ ├── be.WindowsEventLog.h │ │ ├── be.WindowsMessageBox.h │ │ ├── be.WindowsSyslog.WithCallback.h │ │ ├── be.WindowsSyslog.h │ │ ├── be.console.h │ │ ├── be.fail.h │ │ ├── be.file.WithCallback.h │ │ ├── be.file.h │ │ ├── be.fprintf.WithCallback.h │ │ ├── be.fprintf.h │ │ ├── be.lrsplit.h │ │ ├── be.null.h │ │ ├── be.speech.WithCallback.h │ │ ├── be.speech.h │ │ ├── be.syslog.WithCallback.h │ │ ├── be.syslog.h │ │ ├── be.test.h │ │ ├── bec.ACE.h │ │ ├── bec.COMErrorObject.WithCallback.h │ │ ├── bec.COMErrorObject.h │ │ ├── bec.WindowsConsole.WithCallback.h │ │ ├── bec.WindowsConsole.h │ │ ├── bec.WindowsDebugger.WithCallback.h │ │ ├── bec.WindowsDebugger.h │ │ ├── bec.WindowsEventLog.WithCallback.h │ │ ├── bec.WindowsEventLog.h │ │ ├── bec.WindowsMessageBox.h │ │ ├── bec.WindowsSyslog.WithCallback.h │ │ ├── bec.WindowsSyslog.h │ │ ├── bec.console.WithCallback.h │ │ ├── bec.console.h │ │ ├── bec.fail.h │ │ ├── bec.file.WithCallback.h │ │ ├── bec.file.h │ │ ├── bec.fprintf.WithCallback.h │ │ ├── bec.fprintf.h │ │ ├── bec.null.h │ │ ├── bec.speech.WithCallback.h │ │ ├── bec.speech.h │ │ ├── bec.stock.WithCallback.h │ │ ├── bec.stock.h │ │ ├── bec.syslog.WithCallback.h │ │ ├── bec.syslog.h │ │ ├── bec.test.h │ │ ├── bel.ACE.h │ │ ├── bel.COMErrorObject.WithCallback.h │ │ ├── bel.COMErrorObject.h │ │ ├── bel.WindowsConsole.WithCallback.h │ │ ├── bel.WindowsConsole.h │ │ ├── bel.WindowsDebugger.WithCallback.h │ │ ├── bel.WindowsDebugger.h │ │ ├── bel.WindowsEventLog.WithCallback.h │ │ ├── bel.WindowsEventLog.h │ │ ├── bel.WindowsMessageBox.h │ │ ├── bel.WindowsSyslog.WithCallback.h │ │ ├── bel.WindowsSyslog.h │ │ ├── bel.console.h │ │ ├── bel.fail.h │ │ ├── bel.file.WithCallback.h │ │ ├── bel.file.h │ │ ├── bel.fprintf.WithCallback.h │ │ ├── bel.fprintf.h │ │ ├── bel.null.h │ │ ├── bel.speech.WithCallback.h │ │ ├── bel.speech.h │ │ ├── bel.syslog.h │ │ ├── ber.ACE.h │ │ ├── ber.COMErrorObject.WithCallback.h │ │ ├── ber.COMErrorObject.h │ │ ├── ber.WindowsConsole.WithCallback.h │ │ ├── ber.WindowsConsole.h │ │ ├── ber.WindowsDebugger.WithCallback.h │ │ ├── ber.WindowsDebugger.h │ │ ├── ber.WindowsEventLog.WithCallback.h │ │ ├── ber.WindowsEventLog.h │ │ ├── ber.WindowsMessageBox.h │ │ ├── ber.WindowsSyslog.WithCallback.h │ │ ├── ber.WindowsSyslog.h │ │ ├── ber.console.h │ │ ├── ber.fail.h │ │ ├── ber.file.WithCallback.h │ │ ├── ber.file.h │ │ ├── ber.fprintf.WithCallback.h │ │ ├── ber.fprintf.h │ │ ├── ber.null.h │ │ ├── ber.speech.WithCallback.h │ │ ├── ber.speech.h │ │ ├── ber.syslog.h │ │ ├── core.h │ │ ├── fe.N.WithCallback.h │ │ ├── fe.N.h │ │ ├── fe.WindowsRegistry.WithCallback.h │ │ ├── fe.WindowsRegistry.h │ │ ├── fe.all.WithCallback.h │ │ ├── fe.all.h │ │ ├── fe.fail.h │ │ ├── fe.null.WithCallback.h │ │ ├── fe.null.h │ │ ├── fe.simple.WithCallback.h │ │ ├── fe.simple.h │ │ ├── implicit_link_base_.h │ │ └── util.h │ ├── init_codes.h │ ├── inserters.hpp │ ├── inserters │ │ ├── adaptor.hpp │ │ ├── args.hpp │ │ ├── b.hpp │ │ ├── b64.hpp │ │ ├── blob.hpp │ │ ├── boolean.hpp │ │ ├── ch.hpp │ │ ├── character.hpp │ │ ├── exception.hpp │ │ ├── fmt.hpp │ │ ├── hex_ptr.hpp │ │ ├── hostid.hpp │ │ ├── i.hpp │ │ ├── ids.hpp │ │ ├── integer.hpp │ │ ├── interval.hpp │ │ ├── m2t.hpp │ │ ├── m2w.hpp │ │ ├── p.hpp │ │ ├── pad.hpp │ │ ├── pointer.hpp │ │ ├── processid.hpp │ │ ├── real.hpp │ │ ├── slice.hpp │ │ ├── stream_character.hpp │ │ ├── threadid.hpp │ │ ├── variant_bool.hpp │ │ ├── vb.hpp │ │ ├── w2m.hpp │ │ ├── w2t.hpp │ │ ├── windows │ │ │ ├── hive.hpp │ │ │ ├── sc.hpp │ │ │ └── status_code.hpp │ │ ├── xi.hpp │ │ └── xp.hpp │ ├── internal │ │ ├── generated │ │ │ └── log_functions.inl │ │ ├── initialiser.hpp │ │ ├── lean.h │ │ ├── nox.h │ │ ├── safestr.h │ │ ├── shim_declarations.hpp │ │ ├── slice.hpp │ │ ├── stock_levels.hpp │ │ ├── string_encoding.h │ │ ├── threading.h │ │ └── winlean.h │ ├── pan.hpp │ ├── pantheios.h │ ├── pantheios.hpp │ ├── quality │ │ └── contract.h │ ├── severity │ │ └── levels.hpp │ ├── shims │ │ └── access │ │ │ └── string │ │ │ └── core │ │ │ ├── pan_severity_t.hpp │ │ │ └── pan_slice_t.hpp │ ├── trace.h │ └── util │ │ ├── backends │ │ ├── arguments.h │ │ └── context.hpp │ │ ├── com │ │ └── exception_helpers.hpp │ │ ├── core │ │ └── apidefs.hpp │ │ ├── memory │ │ ├── auto_buffer_selector.hpp │ │ ├── inserters.hpp │ │ └── memcopy.h │ │ ├── severity │ │ ├── ACE.h │ │ ├── WindowsEventLog.h │ │ └── syslog.h │ │ ├── string │ │ ├── date_elements_to_string.h │ │ ├── snprintf.h │ │ ├── strdup.h │ │ └── strnlen.h │ │ ├── system │ │ ├── hostname.h │ │ ├── processid.h │ │ └── threadid.h │ │ ├── test │ │ ├── compiler_warnings_suppression.first_include.h │ │ └── compiler_warnings_suppression.last_include.h │ │ └── time │ │ └── currenttime.h └── readme.html ├── lib └── readme.html ├── prepare_cmake.sh ├── project_map.html ├── projects ├── CMakeLists.txt ├── backends │ ├── CMakeLists.txt │ ├── be.ACE │ │ ├── CMakeLists.txt │ │ ├── vc10 │ │ │ ├── be.ACE.vcxproj │ │ │ └── be.ACE.vcxproj.filters │ │ └── vc6 │ │ │ └── be.ACE.dsp │ ├── be.COMErrorObject │ │ ├── CMakeLists.txt │ │ ├── vc10 │ │ │ ├── be.COMErrorObject.vcxproj │ │ │ └── be.COMErrorObject.vcxproj.filters │ │ └── vc6 │ │ │ └── be.COMErrorObject.dsp │ ├── be.N │ │ ├── CMakeLists.txt │ │ ├── vc10 │ │ │ ├── be.N.vcxproj │ │ │ └── be.N.vcxproj.filters │ │ └── vc6 │ │ │ └── be.N.dsp │ ├── be.WindowsConsole │ │ ├── CMakeLists.txt │ │ ├── vc10 │ │ │ ├── be.WindowsConsole.vcxproj │ │ │ └── be.WindowsConsole.vcxproj.filters │ │ └── vc6 │ │ │ └── be.WindowsConsole.dsp │ ├── be.WindowsDebugger │ │ ├── CMakeLists.txt │ │ ├── vc10 │ │ │ ├── be.WindowsDebugger.vcxproj │ │ │ └── be.WindowsDebugger.vcxproj.filters │ │ └── vc6 │ │ │ └── be.WindowsDebugger.dsp │ ├── be.WindowsEventLog │ │ ├── CMakeLists.txt │ │ ├── vc10 │ │ │ ├── be.WindowsEventLog.vcxproj │ │ │ └── be.WindowsEventLog.vcxproj.filters │ │ └── vc6 │ │ │ └── be.WindowsEventLog.dsp │ ├── be.WindowsMessageBox │ │ ├── CMakeLists.txt │ │ └── vc10 │ │ │ ├── be.WindowsMessageBox.vcxproj │ │ │ └── be.WindowsMessageBox.vcxproj.filters │ ├── be.WindowsSyslog │ │ ├── CMakeLists.txt │ │ ├── vc10 │ │ │ ├── be.WindowsSyslog.vcxproj │ │ │ └── be.WindowsSyslog.vcxproj.filters │ │ └── vc6 │ │ │ └── be.WindowsSyslog.dsp │ ├── be.fail │ │ ├── CMakeLists.txt │ │ ├── vc10 │ │ │ ├── be.fail.vcxproj │ │ │ └── be.fail.vcxproj.filters │ │ └── vc6 │ │ │ └── be.fail.dsp │ ├── be.file │ │ ├── CMakeLists.txt │ │ ├── vc10 │ │ │ ├── be.file.vcxproj │ │ │ └── be.file.vcxproj.filters │ │ └── vc6 │ │ │ └── be.file.dsp │ ├── be.fprintf │ │ ├── CMakeLists.txt │ │ ├── vc10 │ │ │ ├── be.fprintf.vcxproj │ │ │ └── be.fprintf.vcxproj.filters │ │ └── vc6 │ │ │ └── be.fprintf.dsp │ ├── be.loader │ │ ├── CMakeLists.txt │ │ └── vc10 │ │ │ ├── be.loader.vcxproj │ │ │ └── be.loader.vcxproj.filters │ ├── be.lrsplit │ │ ├── CMakeLists.txt │ │ ├── vc10 │ │ │ ├── be.lrsplit.vcxproj │ │ │ └── be.lrsplit.vcxproj.filters │ │ └── vc6 │ │ │ └── be.lrsplit.dsp │ ├── be.null │ │ ├── CMakeLists.txt │ │ ├── vc10 │ │ │ ├── be.null.vcxproj │ │ │ └── be.null.vcxproj.filters │ │ └── vc6 │ │ │ └── be.null.dsp │ ├── be.speech │ │ ├── CMakeLists.txt │ │ └── vc10 │ │ │ ├── be.speech.vcxproj │ │ │ └── be.speech.vcxproj.filters │ ├── be.syslog │ │ ├── CMakeLists.txt │ │ ├── vc10 │ │ │ ├── be.syslog.vcxproj │ │ │ └── be.syslog.vcxproj.filters │ │ └── vc6 │ │ │ └── be.syslog.dsp │ ├── be.test │ │ ├── CMakeLists.txt │ │ ├── vc10 │ │ │ ├── be.test.vcxproj │ │ │ └── be.test.vcxproj.filters │ │ └── vc6 │ │ │ └── be.test.dsp │ ├── bec.ACE.WithCallback │ │ ├── CMakeLists.txt │ │ └── vc10 │ │ │ ├── bec.ACE.WithCallback.vcxproj │ │ │ └── bec.ACE.WithCallback.vcxproj.filters │ ├── bec.ACE │ │ ├── CMakeLists.txt │ │ ├── vc10 │ │ │ ├── bec.ACE.vcxproj │ │ │ └── bec.ACE.vcxproj.filters │ │ └── vc6 │ │ │ └── bec.ACE.dsp │ ├── bec.COMErrorObject.WithCallback │ │ ├── CMakeLists.txt │ │ └── vc10 │ │ │ ├── bec.COMErrorObject.WithCallback.vcxproj │ │ │ └── bec.COMErrorObject.WithCallback.vcxproj.filters │ ├── bec.COMErrorObject │ │ ├── CMakeLists.txt │ │ ├── vc10 │ │ │ ├── bec.COMErrorObject.vcxproj │ │ │ └── bec.COMErrorObject.vcxproj.filters │ │ └── vc6 │ │ │ └── bec.COMErrorObject.dsp │ ├── bec.WindowsConsole.WithCallback │ │ ├── CMakeLists.txt │ │ ├── vc10 │ │ │ ├── bec.WindowsConsole.WithCallback.vcxproj │ │ │ └── bec.WindowsConsole.WithCallback.vcxproj.filters │ │ └── vc6 │ │ │ └── bec.WindowsConsole.WithCallback.dsp │ ├── bec.WindowsConsole │ │ ├── CMakeLists.txt │ │ ├── vc10 │ │ │ ├── bec.WindowsConsole.vcxproj │ │ │ └── bec.WindowsConsole.vcxproj.filters │ │ └── vc6 │ │ │ └── bec.WindowsConsole.dsp │ ├── bec.WindowsDebugger.WithCallback │ │ ├── CMakeLists.txt │ │ ├── vc10 │ │ │ ├── bec.WindowsDebugger.WithCallback.vcxproj │ │ │ └── bec.WindowsDebugger.WithCallback.vcxproj.filters │ │ └── vc6 │ │ │ └── bec.WindowsDebugger.WithCallback.dsp │ ├── bec.WindowsDebugger │ │ ├── CMakeLists.txt │ │ ├── vc10 │ │ │ ├── bec.WindowsDebugger.vcxproj │ │ │ └── bec.WindowsDebugger.vcxproj.filters │ │ └── vc6 │ │ │ └── bec.WindowsDebugger.dsp │ ├── bec.WindowsEventLog.WithCallback │ │ ├── CMakeLists.txt │ │ └── vc10 │ │ │ ├── bec.WindowsEventLog.WithCallback.vcxproj │ │ │ └── bec.WindowsEventLog.WithCallback.vcxproj.filters │ ├── bec.WindowsEventLog │ │ ├── CMakeLists.txt │ │ ├── vc10 │ │ │ ├── bec.WindowsEventLog.vcxproj │ │ │ └── bec.WindowsEventLog.vcxproj.filters │ │ └── vc6 │ │ │ └── bec.WindowsEventLog.dsp │ ├── bec.WindowsMessageBox.WithCallback │ │ ├── CMakeLists.txt │ │ └── vc10 │ │ │ ├── bec.WindowsMessageBox.WithCallback.vcxproj │ │ │ └── bec.WindowsMessageBox.WithCallback.vcxproj.filters │ ├── bec.WindowsMessageBox │ │ ├── CMakeLists.txt │ │ ├── vc10 │ │ │ ├── bec.WindowsMessageBox.vcxproj │ │ │ └── bec.WindowsMessageBox.vcxproj.filters │ │ └── vc6 │ │ │ └── bec.WindowsMessageBox.dsp │ ├── bec.WindowsSyslog.WithCallback │ │ ├── CMakeLists.txt │ │ └── vc10 │ │ │ ├── bec.WindowsSyslog.WithCallback.vcxproj │ │ │ └── bec.WindowsSyslog.WithCallback.vcxproj.filters │ ├── bec.WindowsSyslog │ │ ├── CMakeLists.txt │ │ ├── vc10 │ │ │ ├── bec.WindowsSyslog.vcxproj │ │ │ └── bec.WindowsSyslog.vcxproj.filters │ │ └── vc6 │ │ │ └── bec.WindowsSyslog.dsp │ ├── bec.fail.WithCallback │ │ ├── CMakeLists.txt │ │ └── vc10 │ │ │ ├── bec.fail.WithCallback.vcxproj │ │ │ └── bec.fail.WithCallback.vcxproj.filters │ ├── bec.fail │ │ ├── CMakeLists.txt │ │ ├── vc10 │ │ │ ├── bec.fail.vcxproj │ │ │ └── bec.fail.vcxproj.filters │ │ └── vc6 │ │ │ └── bec.fail.dsp │ ├── bec.file.WithCallback │ │ ├── CMakeLists.txt │ │ ├── vc10 │ │ │ ├── bec.file.WithCallback.vcxproj │ │ │ └── bec.file.WithCallback.vcxproj.filters │ │ └── vc6 │ │ │ └── bec.file.WithCallback.dsp │ ├── bec.file │ │ ├── CMakeLists.txt │ │ ├── vc10 │ │ │ ├── bec.file.vcxproj │ │ │ └── bec.file.vcxproj.filters │ │ └── vc6 │ │ │ └── bec.file.dsp │ ├── bec.fprintf.WithCallback │ │ ├── CMakeLists.txt │ │ ├── vc10 │ │ │ ├── bec.fprintf.WithCallback.vcxproj │ │ │ └── bec.fprintf.WithCallback.vcxproj.filters │ │ └── vc6 │ │ │ └── bec.fprintf.WithCallback.dsp │ ├── bec.fprintf │ │ ├── CMakeLists.txt │ │ ├── vc10 │ │ │ ├── bec.fprintf.vcxproj │ │ │ └── bec.fprintf.vcxproj.filters │ │ └── vc6 │ │ │ └── bec.fprintf.dsp │ ├── bec.loader.WithCallback │ │ ├── CMakeLists.txt │ │ └── vc10 │ │ │ ├── bec.loader.WithCallback.vcxproj │ │ │ └── bec.loader.WithCallback.vcxproj.filters │ ├── bec.loader │ │ ├── CMakeLists.txt │ │ └── vc10 │ │ │ ├── bec.loader.vcxproj │ │ │ └── bec.loader.vcxproj.filters │ ├── bec.null.WithCallback │ │ ├── CMakeLists.txt │ │ └── vc10 │ │ │ ├── bec.null.WithCallback.vcxproj │ │ │ └── bec.null.WithCallback.vcxproj.filters │ ├── bec.null │ │ ├── CMakeLists.txt │ │ ├── vc10 │ │ │ ├── bec.null.vcxproj │ │ │ └── bec.null.vcxproj.filters │ │ └── vc6 │ │ │ └── bec.null.dsp │ ├── bec.speech.WithCallback │ │ ├── CMakeLists.txt │ │ ├── vc10 │ │ │ ├── bec.speech.WithCallback.vcxproj │ │ │ └── bec.speech.WithCallback.vcxproj.filters │ │ └── vc6 │ │ │ └── bec.speech.WithCallback.dsp │ ├── bec.speech │ │ ├── CMakeLists.txt │ │ ├── vc10 │ │ │ ├── bec.speech.vcxproj │ │ │ └── bec.speech.vcxproj.filters │ │ └── vc6 │ │ │ └── bec.speech.dsp │ ├── bec.stock.WithCallback │ │ └── CMakeLists.txt │ ├── bec.stock │ │ ├── CMakeLists.txt │ │ └── vc10 │ │ │ ├── bec.stock.vcxproj │ │ │ └── bec.stock.vcxproj.filters │ ├── bec.syslog.WithCallback │ │ ├── CMakeLists.txt │ │ └── vc10 │ │ │ ├── bec.syslog.WithCallback.vcxproj │ │ │ └── bec.syslog.WithCallback.vcxproj.filters │ ├── bec.syslog │ │ ├── CMakeLists.txt │ │ ├── vc10 │ │ │ ├── bec.syslog.vcxproj │ │ │ └── bec.syslog.vcxproj.filters │ │ └── vc6 │ │ │ └── bec.syslog.dsp │ ├── bec.test.WithCallback │ │ ├── CMakeLists.txt │ │ └── vc10 │ │ │ ├── bec.test.WithCallback.vcxproj │ │ │ └── bec.test.WithCallback.vcxproj.filters │ ├── bec.test │ │ ├── CMakeLists.txt │ │ ├── vc10 │ │ │ ├── bec.test.vcxproj │ │ │ └── bec.test.vcxproj.filters │ │ └── vc6 │ │ │ └── bec.test.dsp │ ├── bel.ACE │ │ ├── CMakeLists.txt │ │ ├── vc10 │ │ │ ├── bel.ACE.vcxproj │ │ │ └── bel.ACE.vcxproj.filters │ │ └── vc6 │ │ │ └── bel.ACE.dsp │ ├── bel.COMErrorObject │ │ ├── CMakeLists.txt │ │ ├── vc10 │ │ │ ├── bel.COMErrorObject.vcxproj │ │ │ └── bel.COMErrorObject.vcxproj.filters │ │ └── vc6 │ │ │ └── bel.COMErrorObject.dsp │ ├── bel.WindowsConsole │ │ ├── CMakeLists.txt │ │ ├── vc10 │ │ │ ├── bel.WindowsConsole.vcxproj │ │ │ └── bel.WindowsConsole.vcxproj.filters │ │ └── vc6 │ │ │ └── bel.WindowsConsole.dsp │ ├── bel.WindowsDebugger │ │ ├── CMakeLists.txt │ │ ├── vc10 │ │ │ ├── bel.WindowsDebugger.vcxproj │ │ │ └── bel.WindowsDebugger.vcxproj.filters │ │ └── vc6 │ │ │ └── bel.WindowsDebugger.dsp │ ├── bel.WindowsEventLog │ │ ├── CMakeLists.txt │ │ ├── vc10 │ │ │ ├── bel.WindowsEventLog.vcxproj │ │ │ └── bel.WindowsEventLog.vcxproj.filters │ │ └── vc6 │ │ │ └── bel.WindowsEventLog.dsp │ ├── bel.WindowsMessageBox │ │ ├── CMakeLists.txt │ │ └── vc10 │ │ │ ├── bel.WindowsMessageBox.vcxproj │ │ │ └── bel.WindowsMessageBox.vcxproj.filters │ ├── bel.WindowsSyslog │ │ ├── CMakeLists.txt │ │ ├── vc10 │ │ │ ├── bel.WindowsSyslog.vcxproj │ │ │ └── bel.WindowsSyslog.vcxproj.filters │ │ └── vc6 │ │ │ └── bel.WindowsSyslog.dsp │ ├── bel.fail │ │ ├── CMakeLists.txt │ │ ├── vc10 │ │ │ ├── bel.fail.vcxproj │ │ │ └── bel.fail.vcxproj.filters │ │ └── vc6 │ │ │ └── bel.fail.dsp │ ├── bel.file │ │ ├── CMakeLists.txt │ │ ├── vc10 │ │ │ ├── bel.file.vcxproj │ │ │ └── bel.file.vcxproj.filters │ │ └── vc6 │ │ │ └── bel.file.dsp │ ├── bel.fprintf │ │ ├── CMakeLists.txt │ │ ├── vc10 │ │ │ ├── bel.fprintf.vcxproj │ │ │ └── bel.fprintf.vcxproj.filters │ │ └── vc6 │ │ │ └── bel.fprintf.dsp │ ├── bel.loader │ │ ├── CMakeLists.txt │ │ └── vc10 │ │ │ ├── bel.loader.vcxproj │ │ │ └── bel.loader.vcxproj.filters │ ├── bel.null │ │ ├── CMakeLists.txt │ │ ├── vc10 │ │ │ ├── bel.null.vcxproj │ │ │ └── bel.null.vcxproj.filters │ │ └── vc6 │ │ │ └── bel.null.dsp │ ├── bel.speech │ │ ├── CMakeLists.txt │ │ └── vc10 │ │ │ ├── bel.speech.vcxproj │ │ │ └── bel.speech.vcxproj.filters │ ├── bel.syslog │ │ ├── CMakeLists.txt │ │ ├── vc10 │ │ │ ├── bel.syslog.vcxproj │ │ │ └── bel.syslog.vcxproj.filters │ │ └── vc6 │ │ │ └── bel.syslog.dsp │ ├── bel.test │ │ ├── CMakeLists.txt │ │ ├── vc10 │ │ │ ├── bel.test.vcxproj │ │ │ └── bel.test.vcxproj.filters │ │ └── vc6 │ │ │ └── bel.test.dsp │ ├── ber.ACE │ │ ├── CMakeLists.txt │ │ ├── vc10 │ │ │ ├── ber.ACE.vcxproj │ │ │ └── ber.ACE.vcxproj.filters │ │ └── vc6 │ │ │ └── ber.ACE.dsp │ ├── ber.COMErrorObject │ │ ├── CMakeLists.txt │ │ ├── vc10 │ │ │ ├── ber.COMErrorObject.vcxproj │ │ │ └── ber.COMErrorObject.vcxproj.filters │ │ └── vc6 │ │ │ └── ber.COMErrorObject.dsp │ ├── ber.WindowsConsole │ │ ├── CMakeLists.txt │ │ ├── vc10 │ │ │ ├── ber.WindowsConsole.vcxproj │ │ │ └── ber.WindowsConsole.vcxproj.filters │ │ └── vc6 │ │ │ └── ber.WindowsConsole.dsp │ ├── ber.WindowsDebugger │ │ ├── CMakeLists.txt │ │ ├── vc10 │ │ │ ├── ber.WindowsDebugger.vcxproj │ │ │ └── ber.WindowsDebugger.vcxproj.filters │ │ └── vc6 │ │ │ └── ber.WindowsDebugger.dsp │ ├── ber.WindowsEventLog │ │ ├── CMakeLists.txt │ │ ├── vc10 │ │ │ ├── ber.WindowsEventLog.vcxproj │ │ │ └── ber.WindowsEventLog.vcxproj.filters │ │ └── vc6 │ │ │ └── ber.WindowsEventLog.dsp │ ├── ber.WindowsMessageBox │ │ ├── CMakeLists.txt │ │ └── vc10 │ │ │ ├── ber.WindowsMessageBox.vcxproj │ │ │ └── ber.WindowsMessageBox.vcxproj.filters │ ├── ber.WindowsSyslog │ │ ├── CMakeLists.txt │ │ ├── vc10 │ │ │ ├── ber.WindowsSyslog.vcxproj │ │ │ └── ber.WindowsSyslog.vcxproj.filters │ │ └── vc6 │ │ │ └── ber.WindowsSyslog.dsp │ ├── ber.fail │ │ ├── CMakeLists.txt │ │ ├── vc10 │ │ │ ├── ber.fail.vcxproj │ │ │ └── ber.fail.vcxproj.filters │ │ └── vc6 │ │ │ └── ber.fail.dsp │ ├── ber.file │ │ ├── CMakeLists.txt │ │ ├── vc10 │ │ │ ├── ber.file.vcxproj │ │ │ └── ber.file.vcxproj.filters │ │ └── vc6 │ │ │ └── ber.file.dsp │ ├── ber.fprintf │ │ ├── CMakeLists.txt │ │ ├── vc10 │ │ │ ├── ber.fprintf.vcxproj │ │ │ └── ber.fprintf.vcxproj.filters │ │ └── vc6 │ │ │ └── ber.fprintf.dsp │ ├── ber.loader │ │ ├── CMakeLists.txt │ │ └── vc10 │ │ │ ├── ber.loader.vcxproj │ │ │ └── ber.loader.vcxproj.filters │ ├── ber.null │ │ ├── CMakeLists.txt │ │ ├── vc10 │ │ │ ├── ber.null.vcxproj │ │ │ └── ber.null.vcxproj.filters │ │ └── vc6 │ │ │ └── ber.null.dsp │ ├── ber.speech │ │ ├── CMakeLists.txt │ │ └── vc10 │ │ │ ├── ber.speech.vcxproj │ │ │ └── ber.speech.vcxproj.filters │ ├── ber.syslog │ │ ├── CMakeLists.txt │ │ ├── vc10 │ │ │ ├── ber.syslog.vcxproj │ │ │ └── ber.syslog.vcxproj.filters │ │ └── vc6 │ │ │ └── ber.syslog.dsp │ ├── ber.test │ │ ├── CMakeLists.txt │ │ ├── vc10 │ │ │ ├── ber.test.vcxproj │ │ │ └── ber.test.vcxproj.filters │ │ └── vc6 │ │ │ └── ber.test.dsp │ └── pantheios.backends.vc6.dsw ├── core │ ├── CMakeLists.txt │ ├── pantheios.core.vc6.dsw │ ├── vc10 │ │ ├── pantheios.core.vcxproj │ │ └── pantheios.core.vcxproj.filters │ └── vc6 │ │ └── pantheios.core.dsp ├── frontends │ ├── CMakeLists.txt │ ├── fe.N.WithCallback │ │ ├── CMakeLists.txt │ │ ├── vc10 │ │ │ ├── fe.N.WithCallback.vcxproj │ │ │ └── fe.N.WithCallback.vcxproj.filters │ │ └── vc6 │ │ │ └── fe.N.WithCallback.dsp │ ├── fe.N │ │ ├── CMakeLists.txt │ │ ├── vc10 │ │ │ ├── fe.N.vcxproj │ │ │ └── fe.N.vcxproj.filters │ │ └── vc6 │ │ │ └── fe.N.dsp │ ├── fe.WindowsRegistry.WithCallback │ │ ├── CMakeLists.txt │ │ ├── vc10 │ │ │ ├── fe.WindowsRegistry.WithCallback.vcxproj │ │ │ └── fe.WindowsRegistry.WithCallback.vcxproj.filters │ │ └── vc6 │ │ │ └── fe.WindowsRegistry.WithCallback.dsp │ ├── fe.WindowsRegistry │ │ ├── CMakeLists.txt │ │ ├── vc10 │ │ │ ├── fe.WindowsRegistry.vcxproj │ │ │ └── fe.WindowsRegistry.vcxproj.filters │ │ └── vc6 │ │ │ └── fe.WindowsRegistry.dsp │ ├── fe.all.WithCallback │ │ ├── CMakeLists.txt │ │ ├── vc10 │ │ │ ├── fe.all.WithCallback.vcxproj │ │ │ └── fe.all.WithCallback.vcxproj.filters │ │ └── vc6 │ │ │ └── fe.all.WithCallback.dsp │ ├── fe.all │ │ ├── CMakeLists.txt │ │ ├── vc10 │ │ │ ├── fe.all.vcxproj │ │ │ └── fe.all.vcxproj.filters │ │ └── vc6 │ │ │ └── fe.all.dsp │ ├── fe.fail.WithCallback │ │ ├── CMakeLists.txt │ │ └── vc10 │ │ │ ├── fe.fail.WithCallback.vcxproj │ │ │ └── fe.fail.WithCallback.vcxproj.filters │ ├── fe.fail │ │ ├── CMakeLists.txt │ │ └── vc10 │ │ │ ├── fe.fail.vcxproj │ │ │ └── fe.fail.vcxproj.filters │ ├── fe.null.WithCallback │ │ ├── CMakeLists.txt │ │ ├── vc10 │ │ │ ├── fe.null.WithCallback.vcxproj │ │ │ └── fe.null.WithCallback.vcxproj.filters │ │ └── vc6 │ │ │ └── fe.null.WithCallback.dsp │ ├── fe.null │ │ ├── CMakeLists.txt │ │ ├── vc10 │ │ │ ├── fe.null.vcxproj │ │ │ └── fe.null.vcxproj.filters │ │ └── vc6 │ │ │ └── fe.null.dsp │ ├── fe.simple.WithCallback │ │ ├── CMakeLists.txt │ │ ├── vc10 │ │ │ ├── fe.simple.WithCallback.vcxproj │ │ │ └── fe.simple.WithCallback.vcxproj.filters │ │ └── vc6 │ │ │ └── fe.simple.WithCallback.dsp │ ├── fe.simple │ │ ├── CMakeLists.txt │ │ ├── vc10 │ │ │ ├── fe.simple.vcxproj │ │ │ └── fe.simple.vcxproj.filters │ │ └── vc6 │ │ │ └── fe.simple.dsp │ └── pantheios.frontends.vc6.dsw ├── readme.html └── util │ ├── CMakeLists.txt │ ├── pantheios.util.vc6.dsw │ ├── vc10 │ ├── pantheios.util.vcxproj │ └── pantheios.util.vcxproj.filters │ └── vc6 │ └── pantheios.util.dsp ├── remove_cmake_artefacts.sh ├── run_all_scratch_tests.sh ├── run_all_unit_tests.sh ├── scripts ├── make_hdrs.rb └── readme.html ├── src ├── backends │ ├── be.N.c │ ├── be.lrsplit.c │ ├── be │ │ ├── be.ACE.c │ │ ├── be.COMErrorObject.c │ │ ├── be.WindowsConsole.c │ │ ├── be.WindowsDebugger.c │ │ ├── be.WindowsEventLog.c │ │ ├── be.WindowsMessageBox.c │ │ ├── be.WindowsSyslog.c │ │ ├── be.fail.c │ │ ├── be.file.c │ │ ├── be.fprintf.c │ │ ├── be.null.c │ │ ├── be.speech.c │ │ ├── be.syslog.c │ │ └── be.test.c │ ├── bec.ACE.cpp │ ├── bec.COMErrorObject.cpp │ ├── bec.WindowsConsole.cpp │ ├── bec.WindowsDebugger.cpp │ ├── bec.WindowsEventLog.cpp │ ├── bec.WindowsMessageBox.cpp │ ├── bec.WindowsSyslog.cpp │ ├── bec.fail.c │ ├── bec.file.cpp │ ├── bec.fprintf.cpp │ ├── bec.null.c │ ├── bec.speech.cpp │ ├── bec.syslog.c │ ├── bec.test.cpp │ ├── bel │ │ ├── bel.ACE.c │ │ ├── bel.COMErrorObject.c │ │ ├── bel.WindowsConsole.c │ │ ├── bel.WindowsDebugger.c │ │ ├── bel.WindowsEventLog.c │ │ ├── bel.WindowsMessageBox.c │ │ ├── bel.WindowsSyslog.c │ │ ├── bel.fail.c │ │ ├── bel.file.c │ │ ├── bel.fprintf.c │ │ ├── bel.null.c │ │ ├── bel.speech.c │ │ ├── bel.syslog.c │ │ └── bel.test.c │ └── ber │ │ ├── ber.ACE.c │ │ ├── ber.COMErrorObject.c │ │ ├── ber.WindowsConsole.c │ │ ├── ber.WindowsDebugger.c │ │ ├── ber.WindowsEventLog.c │ │ ├── ber.WindowsMessageBox.c │ │ ├── ber.WindowsSyslog.c │ │ ├── ber.fail.c │ │ ├── ber.file.c │ │ ├── ber.fprintf.c │ │ ├── ber.null.c │ │ ├── ber.speech.c │ │ ├── ber.syslog.c │ │ └── ber.test.c ├── core │ ├── api.cpp │ ├── api.deprecated.c │ ├── api.exitprocess.cpp │ ├── api.logputs.cpp │ ├── auto.cpp │ └── logprintf.c ├── frontends │ ├── fe.N.c │ ├── fe.WindowsRegistry.cpp │ ├── fe.all.c │ ├── fe.fail.c │ ├── fe.null.c │ └── fe.simple.c ├── inserters │ ├── args.cpp │ ├── b64.cpp │ ├── blob.cpp │ ├── boolean.cpp │ ├── exception.cpp │ ├── hostid.cpp │ ├── integer.cpp │ ├── interval.cpp │ ├── m2w.cpp │ ├── pointer.cpp │ ├── processid.cpp │ ├── real.cpp │ ├── slice.cpp │ ├── stream_character.cpp │ ├── threadid.cpp │ └── w2m.cpp ├── readme.html └── util │ ├── bailout.c │ ├── be.context.cpp │ ├── be.parse.cpp │ ├── core.apidefs.cpp │ ├── date_elements_to_string.c │ ├── hostname.c │ ├── init_code_strings.c │ ├── processid.c │ ├── severity_strings.c │ ├── snprintf.c │ ├── strdup.c │ ├── strnlen.cpp │ ├── threadid.c │ ├── time.cpp │ └── util.strnlen.c └── test ├── CMakeLists.txt ├── component ├── CMakeLists.txt ├── pantheios.test.component.vc6.dsw ├── test.component.be.file.threading │ ├── CMakeLists.txt │ ├── implicit_link.cpp │ ├── test.component.be.file.threading.cpp │ └── vc6 │ │ └── test.component.be.file.threading.dsp ├── test.component.bec.fprintf │ ├── CMakeLists.txt │ ├── implicit_link.cpp │ ├── test.component.bec.fprintf.cpp │ └── vc10 │ │ ├── test.component.bec.fprintf.vcxproj │ │ └── test.component.bec.fprintf.vcxproj.filters ├── test.component.core.getProcessIdentity │ ├── CMakeLists.txt │ ├── implicit_link.c │ ├── test.component.core.getProcessIdentity.c │ └── vc6 │ │ └── test.component.core.getProcessIdentity.dsp ├── test.component.core.initialisation_sequence │ ├── CMakeLists.txt │ └── test.component.core.initialisation_sequence.c ├── test.component.core.pantheios_logprintf │ ├── CMakeLists.txt │ ├── implicit_link.cpp │ ├── test.component.core.pantheios_logprintf.cpp │ └── vc6 │ │ └── test.component.core.pantheios_logprintf.dsp ├── test.component.core.pantheios_logputs │ ├── CMakeLists.txt │ ├── implicit_link.cpp │ ├── test.component.core.pantheios_logputs.cpp │ └── vc6 │ │ └── test.component.core.pantheios_logputs.dsp ├── test.component.custom_severity │ ├── CMakeLists.txt │ ├── implicit_link.cpp │ ├── test.component.custom_severity.cpp │ └── vc6 │ │ └── test.component.custom_severity.dsp ├── test.component.details │ ├── CMakeLists.txt │ └── test.component.details.cpp ├── test.component.inserters.args │ ├── CMakeLists.txt │ ├── implicit_link.cpp │ ├── test.component.inserters.args.cpp │ └── vc6 │ │ └── test.component.inserters.args.dsp ├── test.component.inserters.b64 │ ├── CMakeLists.txt │ ├── implicit_link.cpp │ ├── test.component.inserters.b64.cpp │ └── vc6 │ │ └── test.component.inserters.b64.dsp ├── test.component.inserters.boolean │ ├── CMakeLists.txt │ ├── implicit_link.cpp │ ├── test.component.inserters.boolean.cpp │ └── vc6 │ │ └── test.component.inserters.boolean.dsp ├── test.component.inserters.hostid │ ├── CMakeLists.txt │ └── test.component.inserters.hostid.cpp ├── test.component.inserters.integer │ ├── CMakeLists.txt │ ├── implicit_link.cpp │ ├── test.component.inserters.integer.cpp │ └── vc6 │ │ └── test.component.inserters.integer.dsp ├── test.component.inserters.m2w │ ├── CMakeLists.txt │ ├── implicit_link.cpp │ ├── test.component.inserters.m2w.cpp │ └── vc6 │ │ └── test.component.inserters.m2w.dsp ├── test.component.inserters.pad │ ├── CMakeLists.txt │ ├── implicit_link.cpp │ ├── test.component.inserters.pad.cpp │ └── vc6 │ │ └── test.component.inserters.pad.dsp ├── test.component.inserters.pointer │ ├── CMakeLists.txt │ ├── implicit_link.cpp │ ├── test.component.inserters.pointer.cpp │ └── vc6 │ │ └── test.component.inserters.pointer.dsp ├── test.component.inserters.processid │ ├── CMakeLists.txt │ ├── implicit_link.cpp │ ├── test.component.inserters.processid.cpp │ └── vc6 │ │ └── test.component.inserters.processid.dsp ├── test.component.inserters.real │ ├── CMakeLists.txt │ └── test.component.inserters.real.cpp ├── test.component.inserters.slice │ ├── CMakeLists.txt │ ├── implicit_link.cpp │ ├── test.component.inserters.slice.cpp │ └── vc6 │ │ └── test.component.inserters.slice.dsp ├── test.component.inserters.stream_character │ ├── CMakeLists.txt │ ├── implicit_link.cpp │ ├── test.component.inserters.stream_character.cpp │ └── vc6 │ │ └── test.component.inserters.stream_character.dsp ├── test.component.inserters.threadid │ ├── CMakeLists.txt │ └── test.component.inserters.threadid.cpp ├── test.component.inserters.variant_bool │ ├── CMakeLists.txt │ ├── implicit_link.cpp │ ├── test.component.inserters.variant_bool.cpp │ └── vc6 │ │ └── test.component.inserters.variant_bool.dsp ├── test.component.inserters.w2m │ ├── CMakeLists.txt │ ├── implicit_link.cpp │ └── test.component.inserters.w2m.cpp ├── test.component.inserters.windows.hive │ ├── CMakeLists.txt │ ├── implicit_link.cpp │ └── test.component.inserters.windows.hive.cpp ├── test.component.log.1 │ ├── CMakeLists.txt │ ├── implicit_link.cpp │ ├── test.component.log.1.cpp │ └── vc6 │ │ └── test.component.log.1.dsp └── test.component.trace.1 │ ├── CMakeLists.txt │ ├── implicit_link.cpp │ ├── test.component.trace.1.cpp │ └── vc6 │ └── test.component.trace.1.dsp ├── performance ├── CMakeLists.txt ├── pantheios.test.performance.vc6.dsw ├── test.performance.inserters.m2w │ ├── CMakeLists.txt │ ├── implicit_link.cpp │ ├── test.performance.inserters.m2w.cpp │ └── vc6 │ │ └── test.performance.inserters.m2w.dsp ├── test.performance.inserters.w2m │ ├── CMakeLists.txt │ ├── implicit_link.cpp │ ├── test.performance.inserters.w2m.cpp │ └── vc6 │ │ └── test.performance.inserters.w2m.dsp └── test.performance.util.date_elements_to_string │ ├── CMakeLists.txt │ ├── implicit_link.cpp │ ├── test.performance.util.date_elements_to_string.cpp │ └── vc6 │ └── test.performance.util.date_elements_to_string.dsp ├── readme.html ├── scratch ├── CMakeLists.txt ├── pantheios.test.scratch.vc6.dsw ├── test.scratch.I18N │ ├── CMakeLists.txt │ ├── implicit_link.cpp │ ├── test.scratch.I18N.cpp │ └── vc6 │ │ └── test.scratch.I18N.dsp ├── test.scratch.WideString │ ├── CMakeLists.txt │ └── test.scratch.WideString.cpp ├── test.scratch.api │ ├── CMakeLists.txt │ ├── implicit_link.cpp │ ├── test.scratch.api.cpp │ └── vc6 │ │ └── test.scratch.api.dsp ├── test.scratch.be.ACE │ ├── CMakeLists.txt │ ├── implicit_link.cpp │ └── test.scratch.be.ACE.cpp ├── test.scratch.be.N.fail │ ├── CMakeLists.txt │ ├── implicit_link.cpp │ ├── test.scratch.be.N.fail.cpp │ └── vc6 │ │ └── test.scratch.be.N.fail.dsp ├── test.scratch.be.N.with.custom.fe │ ├── CMakeLists.txt │ ├── implicit_link.cpp │ ├── test.scratch.be.N.with.custom.fe.cpp │ └── vc6 │ │ └── test.scratch.be.N.with.custom.fe.dsp ├── test.scratch.be.N │ ├── CMakeLists.txt │ ├── implicit_link.cpp │ ├── test.scratch.be.N.cpp │ └── vc6 │ │ └── test.scratch.be.N.dsp ├── test.scratch.be.WindowsSyslog.WithCallback │ ├── CMakeLists.txt │ ├── implicit_link.cpp │ ├── test.scratch.be.WindowsSyslog.WithCallback.cpp │ └── vc6 │ │ └── test.scratch.be.WindowsSyslog.WithCallback.dsp ├── test.scratch.be.WindowsSyslog │ ├── CMakeLists.txt │ ├── implicit_link.cpp │ ├── test.scratch.be.WindowsSyslog.cpp │ └── vc6 │ │ └── test.scratch.be.WindowsSyslog.dsp ├── test.scratch.be.file.rolling │ ├── CMakeLists.txt │ ├── implicit_link.cpp │ ├── test.scratch.be.file.rolling.cpp │ └── vc6 │ │ └── test.scratch.be.file.rolling.dsp ├── test.scratch.be.file │ ├── CMakeLists.txt │ ├── implicit_link.cpp │ ├── test.scratch.be.file.cpp │ └── vc6 │ │ └── test.scratch.be.file.dsp ├── test.scratch.be.pantheios.COM │ ├── CMakeLists.txt │ ├── test.scratch.be.pantheios.COM.cpp │ └── vc6 │ │ └── test.scratch.be.pantheios.COM.dsp ├── test.scratch.be.speech │ ├── CMakeLists.txt │ ├── implicit_link.cpp │ ├── test.scratch.be.speech.cpp │ └── vc6 │ │ └── test.scratch.be.speech.dsp ├── test.scratch.be.syslog.WithCallback │ ├── CMakeLists.txt │ ├── implicit_link.cpp │ ├── test.scratch.be.syslog.WithCallback.cpp │ └── vc6 │ │ └── test.scratch.be.syslog.WithCallback.dsp ├── test.scratch.be.syslog │ ├── CMakeLists.txt │ ├── implicit_link.cpp │ ├── test.scratch.be.syslog.cpp │ └── vc6 │ │ └── test.scratch.be.syslog.dsp ├── test.scratch.bec.WindowsConsoleCallback │ ├── CMakeLists.txt │ ├── implicit_link.cpp │ ├── test.scratch.bec.WindowsConsoleCallback.cpp │ └── vc6 │ │ └── test.scratch.bec.WindowsConsoleCallback.dsp ├── test.scratch.bec.WindowsMessageBox │ ├── CMakeLists.txt │ ├── implicit_link.cpp │ ├── test.scratch.bec.WindowsMessageBox.cpp │ └── vc6 │ │ └── test.scratch.bec.WindowsMessageBox.dsp ├── test.scratch.c_api │ ├── CMakeLists.txt │ ├── implicit_link.cpp │ ├── test.scratch.c_api.c │ └── vc6 │ │ └── test.scratch.c_api.dsp ├── test.scratch.extras.com.invoke_nothrow_method │ ├── CMakeLists.txt │ ├── implicit_link.cpp │ ├── test.scratch.extras.com.invoke_nothrow_method.cpp │ └── vc6 │ │ └── test.scratch.extras.com.invoke_nothrow_method.dsp ├── test.scratch.extras.com_exception_helpers │ ├── CMakeLists.txt │ ├── implicit_link.cpp │ ├── test.scratch.extras.com_exception_helpers.cpp │ └── vc6 │ │ └── test.scratch.extras.com_exception_helpers.dsp ├── test.scratch.fe.WindowsRegistry.controller │ ├── CMakeLists.txt │ ├── test.scratch.fe.WindowsRegistry.controller.cpp │ └── vc6 │ │ └── test.scratch.fe.WindowsRegistry.controller.dsp ├── test.scratch.fe.WindowsRegistry │ ├── CMakeLists.txt │ ├── implicit_link.cpp │ ├── test.scratch.fe.WindowsRegistry.cpp │ └── vc6 │ │ └── test.scratch.fe.WindowsRegistry.dsp ├── test.scratch.fe.simple.WithCallback │ ├── CMakeLists.txt │ ├── implicit_link.cpp │ ├── test.scratch.fe.simple.WithCallback.cpp │ └── vc6 │ │ └── test.scratch.fe.simple.WithCallback.dsp ├── test.scratch.fe │ ├── CMakeLists.txt │ ├── test.scratch.fe.cpp │ └── vc6 │ │ └── test.scratch.fe.dsp ├── test.scratch.implicit_link │ ├── CMakeLists.txt │ └── test.scratch.implicit_link.cpp ├── test.scratch.pseudoUNIX │ ├── CMakeLists.txt │ ├── test.scratch.pseudoUNIX.c │ └── vc6 │ │ └── test.scratch.pseudoUNIX.dsp ├── test.scratch.showPlus.integer │ ├── CMakeLists.txt │ ├── implicit_link.cpp │ └── test.scratch.showPlus.integer.cpp ├── test.scratch.trace │ ├── CMakeLists.txt │ ├── test.scratch.trace.cpp │ └── vc6 │ │ └── test.scratch.trace.dsp ├── test.scratch.tstring │ ├── CMakeLists.txt │ ├── implicit_link.cpp │ ├── test.scratch.tstring.cpp │ └── vc6 │ │ └── test.scratch.tstring.dsp └── test.scratch.util.onbailout │ ├── CMakeLists.txt │ ├── implicit_link.cpp │ ├── test.scratch.util.onbailout.cpp │ └── vc6 │ └── test.scratch.util.onbailout.dsp └── unit ├── CMakeLists.txt ├── inserters ├── CMakeLists.txt ├── test.unit.inserter.integer │ ├── CMakeLists.txt │ ├── implicit_link.cpp │ ├── test.unit.inserter.integer.cpp │ └── vc6 │ │ └── test.unit.inserter.integer.dsp ├── test.unit.inserter.m2w │ ├── CMakeLists.txt │ ├── implicit_link.cpp │ ├── test.unit.inserter.m2w.cpp │ └── vc6 │ │ └── test.unit.inserter.m2w.dsp ├── test.unit.inserter.stream_character │ ├── CMakeLists.txt │ ├── implicit_link.cpp │ └── test.unit.inserter.stream_character.cpp └── test.unit.inserter.w2m │ ├── CMakeLists.txt │ ├── implicit_link.cpp │ ├── test.unit.inserter.w2m.cpp │ └── vc6 │ └── test.unit.inserter.w2m.dsp ├── pantheios.test.unit.vc6.dsw ├── test.unit.be.N.filtering ├── CMakeLists.txt ├── implicit_link.cpp ├── test.unit.be.N.filtering.c └── vc6 │ └── test.unit.be.N.filtering.dsp ├── test.unit.be.N ├── CMakeLists.txt ├── implicit_link.cpp ├── test.unit.be.N.c └── vc6 │ └── test.unit.be.N.dsp ├── test.unit.be.WindowsSyslog ├── CMakeLists.txt ├── implicit_link.cpp ├── test.unit.be.WindowsSyslog.cpp └── vc6 │ └── test.unit.be.WindowsSyslog.dsp ├── test.unit.be.fail ├── CMakeLists.txt ├── implicit_link.cpp ├── test.unit.be.fail.c └── vc6 │ └── test.unit.be.fail.dsp ├── test.unit.be.lrsplit ├── CMakeLists.txt ├── implicit_link.cpp ├── test.unit.be.lrsplit.c └── vc6 │ └── test.unit.be.lrsplit.dsp ├── test.unit.bec.COMErrorObject ├── CMakeLists.txt ├── implicit_link.cpp ├── test.unit.bec.COMErrorObject.cpp └── vc6 │ └── test.unit.bec.COMErrorObject.dsp ├── test.unit.bec.fail ├── CMakeLists.txt ├── implicit_link.cpp ├── test.unit.bec.fail.c └── vc6 │ └── test.unit.bec.fail.dsp ├── test.unit.bec.file ├── CMakeLists.txt ├── implicit_link.cpp ├── test.unit.bec.file.cpp └── vc6 │ └── test.unit.bec.file.dsp ├── test.unit.bec.fprintf ├── CMakeLists.txt ├── implicit_link.cpp ├── test.unit.bec.fprintf.cpp └── vc6 │ └── test.unit.bec.fprintf.dsp ├── test.unit.fe.N ├── CMakeLists.txt ├── implicit_link.cpp ├── test.unit.fe.N.c └── vc6 │ └── test.unit.fe.N.dsp ├── test.unit.fe.WindowsRegistry ├── CMakeLists.txt ├── implicit_link.cpp ├── test.unit.fe.WindowsRegistry.cpp └── vc6 │ └── test.unit.fe.WindowsRegistry.dsp ├── test.unit.fe.all ├── CMakeLists.txt ├── implicit_link.cpp ├── test.unit.fe.all.c └── vc6 │ └── test.unit.fe.all.dsp ├── test.unit.fe.fail ├── CMakeLists.txt ├── implicit_link.cpp ├── test.unit.fe.fail.c └── vc6 │ └── test.unit.fe.fail.dsp ├── test.unit.fe.null ├── CMakeLists.txt ├── implicit_link.cpp ├── test.unit.fe.null.c └── vc6 │ └── test.unit.fe.null.dsp ├── test.unit.fe.simple ├── CMakeLists.txt ├── implicit_link.cpp ├── test.unit.fe.simple.c └── vc6 │ └── test.unit.fe.simple.dsp ├── test.unit.getversion ├── CMakeLists.txt ├── implicit_link.cpp ├── test.unit.getversion.c └── vc6 │ └── test.unit.getversion.dsp ├── test.unit.inserters.windows.sc ├── CMakeLists.txt ├── implicit_link.cpp ├── test.unit.inserters.windows.sc.cpp └── vc6 │ └── test.unit.inserters.windows.sc.dsp ├── test.unit.levels.2 ├── CMakeLists.txt └── vc6 │ └── test.unit.levels.2.dsp ├── test.unit.levels.dynamic_initialisation ├── CMakeLists.txt ├── implicit_link.cpp ├── test.unit.levels.dynamic_initialisation.cpp └── vc6 │ └── test.unit.levels.dynamic_initialisation.dsp ├── test.unit.levels.values ├── CMakeLists.txt ├── implicit_link.cpp ├── test.unit.levels.values.c └── vc6 │ └── test.unit.levels.values.dsp ├── test.unit.util.date_elements_to_string ├── CMakeLists.txt ├── implicit_link.cpp └── test.unit.util.date_elements_to_string.cpp ├── test.unit.util.getcurrenttime ├── CMakeLists.txt ├── implicit_link.cpp ├── test.unit.util.getcurrenttime.cpp └── vc6 │ └── test.unit.util.getcurrenttime.dsp ├── test.unit.util.gethostname ├── CMakeLists.txt ├── implicit_link.cpp ├── test.unit.util.gethostname.cpp └── vc6 │ └── test.unit.util.gethostname.dsp ├── test.unit.util.onbailout ├── CMakeLists.txt ├── implicit_link.cpp ├── test.unit.util.onbailout.cpp └── vc6 │ └── test.unit.util.onbailout.dsp ├── test.unit.util.snprintf ├── CMakeLists.txt ├── implicit_link.cpp ├── test.unit.util.snprintf.cpp └── vc10 │ ├── test.unit.util.snprintf.vcxproj │ └── test.unit.util.snprintf.vcxproj.filters └── test.unit.util.strnlen ├── CMakeLists.txt ├── implicit_link.cpp ├── test.unit.util.strnlen.cpp └── vc6 └── test.unit.util.strnlen.dsp /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/.gitignore -------------------------------------------------------------------------------- /.vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/.vimrc -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/AUTHORS.md -------------------------------------------------------------------------------- /CHANGES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/CHANGES.txt -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/FAQ.md -------------------------------------------------------------------------------- /HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/HISTORY.md -------------------------------------------------------------------------------- /HOW_YOU_CAN_HELP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/HOW_YOU_CAN_HELP.md -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/INSTALL.md -------------------------------------------------------------------------------- /KNOWN_ISSUES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/KNOWN_ISSUES.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/LICENSE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/NEWS.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/README.md -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/README.txt -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/TODO.md -------------------------------------------------------------------------------- /bin/readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/bin/readme.html -------------------------------------------------------------------------------- /clean_cmake.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/clean_cmake.sh -------------------------------------------------------------------------------- /cmake/BuildType.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/cmake/BuildType.cmake -------------------------------------------------------------------------------- /cmake/LanguageFullVersion.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/cmake/LanguageFullVersion.cmake -------------------------------------------------------------------------------- /cmake/Pantheios-config.cmake.in: -------------------------------------------------------------------------------- 1 | @PACKAGE_INIT@ 2 | include("${CMAKE_CURRENT_LIST_DIR}/@EXPORT_NAME@-targets.cmake") 3 | 4 | -------------------------------------------------------------------------------- /cmake/TargetMacros.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/cmake/TargetMacros.cmake -------------------------------------------------------------------------------- /examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/examples/CMakeLists.txt -------------------------------------------------------------------------------- /examples/c/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/examples/c/CMakeLists.txt -------------------------------------------------------------------------------- /examples/c/example.c.101/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/examples/c/example.c.101/CMakeLists.txt -------------------------------------------------------------------------------- /examples/c/example.c.101/example.c.101.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/examples/c/example.c.101/example.c.101.c -------------------------------------------------------------------------------- /examples/c/example.c.101/implicit_link.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/examples/c/example.c.101/implicit_link.cpp -------------------------------------------------------------------------------- /examples/c/example.c.101/vc6/example.c.101.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/examples/c/example.c.101/vc6/example.c.101.dsp -------------------------------------------------------------------------------- /examples/c/example.c.N/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/examples/c/example.c.N/CMakeLists.txt -------------------------------------------------------------------------------- /examples/c/example.c.N/example.c.N.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/examples/c/example.c.N/example.c.N.c -------------------------------------------------------------------------------- /examples/c/example.c.N/implicit_link.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/examples/c/example.c.N/implicit_link.cpp -------------------------------------------------------------------------------- /examples/c/example.c.N/vc6/example.c.N.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/examples/c/example.c.N/vc6/example.c.N.dsp -------------------------------------------------------------------------------- /examples/c/example.c.assert/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/examples/c/example.c.assert/CMakeLists.txt -------------------------------------------------------------------------------- /examples/c/example.c.assert/example.c.assert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/examples/c/example.c.assert/example.c.assert.c -------------------------------------------------------------------------------- /examples/c/example.c.assert/implicit_link.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/examples/c/example.c.assert/implicit_link.cpp -------------------------------------------------------------------------------- /examples/c/example.c.assert/vc6/example.c.assert.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/examples/c/example.c.assert/vc6/example.c.assert.dsp -------------------------------------------------------------------------------- /examples/c/example.c.core.pantheios_logprintf/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/examples/c/example.c.core.pantheios_logprintf/CMakeLists.txt -------------------------------------------------------------------------------- /examples/c/example.c.extended_severity/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/examples/c/example.c.extended_severity/CMakeLists.txt -------------------------------------------------------------------------------- /examples/c/example.c.extended_severity/implicit_link.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/examples/c/example.c.extended_severity/implicit_link.cpp -------------------------------------------------------------------------------- /examples/c/example.c.log_n/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/examples/c/example.c.log_n/CMakeLists.txt -------------------------------------------------------------------------------- /examples/c/example.c.log_n/example.c.log_n.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/examples/c/example.c.log_n/example.c.log_n.c -------------------------------------------------------------------------------- /examples/c/example.c.log_n/implicit_link.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/examples/c/example.c.log_n/implicit_link.cpp -------------------------------------------------------------------------------- /examples/c/example.c.log_n/vc6/example.c.log_n.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/examples/c/example.c.log_n/vc6/example.c.log_n.dsp -------------------------------------------------------------------------------- /examples/c/pantheios.examples.c.vc6.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/examples/c/pantheios.examples.c.vc6.dsw -------------------------------------------------------------------------------- /examples/c/util/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/examples/c/util/CMakeLists.txt -------------------------------------------------------------------------------- /examples/c/util/example.c.util.getcurrenttime/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/examples/c/util/example.c.util.getcurrenttime/CMakeLists.txt -------------------------------------------------------------------------------- /examples/c/util/example.c.util.gethostname/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/examples/c/util/example.c.util.gethostname/CMakeLists.txt -------------------------------------------------------------------------------- /examples/c/util/example.c.util.gethostname/implicit_link.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/examples/c/util/example.c.util.gethostname/implicit_link.cpp -------------------------------------------------------------------------------- /examples/c/util/pantheios.examples.c.util.vc6.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/examples/c/util/pantheios.examples.c.util.vc6.dsw -------------------------------------------------------------------------------- /examples/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/examples/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /examples/cpp/backends/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/examples/cpp/backends/CMakeLists.txt -------------------------------------------------------------------------------- /examples/cpp/backends/pantheios.examples.cpp.backends.vc6.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/examples/cpp/backends/pantheios.examples.cpp.backends.vc6.dsw -------------------------------------------------------------------------------- /examples/cpp/contract/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/examples/cpp/contract/CMakeLists.txt -------------------------------------------------------------------------------- /examples/cpp/contract/pantheios.examples.cpp.contract.vc6.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/examples/cpp/contract/pantheios.examples.cpp.contract.vc6.dsw -------------------------------------------------------------------------------- /examples/cpp/custom/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/examples/cpp/custom/CMakeLists.txt -------------------------------------------------------------------------------- /examples/cpp/custom/pantheios.examples.cpp.custom.vc6.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/examples/cpp/custom/pantheios.examples.cpp.custom.vc6.dsw -------------------------------------------------------------------------------- /examples/cpp/format/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/examples/cpp/format/CMakeLists.txt -------------------------------------------------------------------------------- /examples/cpp/format/example.cpp.format.highres/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/examples/cpp/format/example.cpp.format.highres/CMakeLists.txt -------------------------------------------------------------------------------- /examples/cpp/format/example.cpp.format.lowres/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/examples/cpp/format/example.cpp.format.lowres/CMakeLists.txt -------------------------------------------------------------------------------- /examples/cpp/format/example.cpp.format.pad/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/examples/cpp/format/example.cpp.format.pad/CMakeLists.txt -------------------------------------------------------------------------------- /examples/cpp/format/example.cpp.format.pad/implicit_link.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/examples/cpp/format/example.cpp.format.pad/implicit_link.cpp -------------------------------------------------------------------------------- /examples/cpp/format/pantheios.examples.cpp.format.vc6.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/examples/cpp/format/pantheios.examples.cpp.format.vc6.dsw -------------------------------------------------------------------------------- /examples/cpp/frontends/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/examples/cpp/frontends/CMakeLists.txt -------------------------------------------------------------------------------- /examples/cpp/inserters/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/examples/cpp/inserters/CMakeLists.txt -------------------------------------------------------------------------------- /examples/cpp/inserters/example.cpp.inserter.b/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/examples/cpp/inserters/example.cpp.inserter.b/CMakeLists.txt -------------------------------------------------------------------------------- /examples/cpp/inserters/example.cpp.inserter.i/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/examples/cpp/inserters/example.cpp.inserter.i/CMakeLists.txt -------------------------------------------------------------------------------- /examples/cpp/inserters/example.cpp.inserter.p/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/examples/cpp/inserters/example.cpp.inserter.p/CMakeLists.txt -------------------------------------------------------------------------------- /examples/cpp/inserters/example.cpp.inserter.xi/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/examples/cpp/inserters/example.cpp.inserter.xi/CMakeLists.txt -------------------------------------------------------------------------------- /examples/cpp/inserters/example.cpp.inserter.xp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/examples/cpp/inserters/example.cpp.inserter.xp/CMakeLists.txt -------------------------------------------------------------------------------- /examples/cpp/linking/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/examples/cpp/linking/CMakeLists.txt -------------------------------------------------------------------------------- /examples/cpp/linking/pantheios.examples.cpp.linking.vc6.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/examples/cpp/linking/pantheios.examples.cpp.linking.vc6.dsw -------------------------------------------------------------------------------- /examples/cpp/misc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/examples/cpp/misc/CMakeLists.txt -------------------------------------------------------------------------------- /examples/cpp/misc/example.cpp.misc.101/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/examples/cpp/misc/example.cpp.misc.101/CMakeLists.txt -------------------------------------------------------------------------------- /examples/cpp/misc/example.cpp.misc.101/implicit_link.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/examples/cpp/misc/example.cpp.misc.101/implicit_link.cpp -------------------------------------------------------------------------------- /examples/cpp/misc/example.cpp.misc.hetero1/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/examples/cpp/misc/example.cpp.misc.hetero1/CMakeLists.txt -------------------------------------------------------------------------------- /examples/cpp/misc/example.cpp.misc.hetero1/implicit_link.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/examples/cpp/misc/example.cpp.misc.hetero1/implicit_link.cpp -------------------------------------------------------------------------------- /examples/cpp/misc/example.cpp.misc.strings/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/examples/cpp/misc/example.cpp.misc.strings/CMakeLists.txt -------------------------------------------------------------------------------- /examples/cpp/misc/example.cpp.misc.strings/implicit_link.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/examples/cpp/misc/example.cpp.misc.strings/implicit_link.cpp -------------------------------------------------------------------------------- /examples/cpp/misc/pantheios.examples.cpp.misc.vc6.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/examples/cpp/misc/pantheios.examples.cpp.misc.vc6.dsw -------------------------------------------------------------------------------- /examples/cpp/pantheios.examples.cpp.vc6.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/examples/cpp/pantheios.examples.cpp.vc6.dsw -------------------------------------------------------------------------------- /examples/cpp/tracing/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/examples/cpp/tracing/CMakeLists.txt -------------------------------------------------------------------------------- /examples/cpp/util/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/examples/cpp/util/CMakeLists.txt -------------------------------------------------------------------------------- /examples/cpp/util/example.cpp.util.strdup/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/examples/cpp/util/example.cpp.util.strdup/CMakeLists.txt -------------------------------------------------------------------------------- /examples/cpp/util/example.cpp.util.strdup/implicit_link.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/examples/cpp/util/example.cpp.util.strdup/implicit_link.cpp -------------------------------------------------------------------------------- /examples/readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/examples/readme.html -------------------------------------------------------------------------------- /include/pantheios/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/assert.h -------------------------------------------------------------------------------- /include/pantheios/backend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/backend.h -------------------------------------------------------------------------------- /include/pantheios/backends/be.N.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/backends/be.N.h -------------------------------------------------------------------------------- /include/pantheios/backends/be.lrsplit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/backends/be.lrsplit.h -------------------------------------------------------------------------------- /include/pantheios/backends/bec.ACE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/backends/bec.ACE.h -------------------------------------------------------------------------------- /include/pantheios/backends/bec.COMErrorObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/backends/bec.COMErrorObject.h -------------------------------------------------------------------------------- /include/pantheios/backends/bec.WindowsConsole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/backends/bec.WindowsConsole.h -------------------------------------------------------------------------------- /include/pantheios/backends/bec.WindowsDebugger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/backends/bec.WindowsDebugger.h -------------------------------------------------------------------------------- /include/pantheios/backends/bec.WindowsEventLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/backends/bec.WindowsEventLog.h -------------------------------------------------------------------------------- /include/pantheios/backends/bec.WindowsMessageBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/backends/bec.WindowsMessageBox.h -------------------------------------------------------------------------------- /include/pantheios/backends/bec.WindowsSyslog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/backends/bec.WindowsSyslog.h -------------------------------------------------------------------------------- /include/pantheios/backends/bec.console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/backends/bec.console.h -------------------------------------------------------------------------------- /include/pantheios/backends/bec.fail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/backends/bec.fail.h -------------------------------------------------------------------------------- /include/pantheios/backends/bec.file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/backends/bec.file.h -------------------------------------------------------------------------------- /include/pantheios/backends/bec.fprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/backends/bec.fprintf.h -------------------------------------------------------------------------------- /include/pantheios/backends/bec.null.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/backends/bec.null.h -------------------------------------------------------------------------------- /include/pantheios/backends/bec.speech.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/backends/bec.speech.h -------------------------------------------------------------------------------- /include/pantheios/backends/bec.syslog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/backends/bec.syslog.h -------------------------------------------------------------------------------- /include/pantheios/backends/bec.test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/backends/bec.test.h -------------------------------------------------------------------------------- /include/pantheios/fileline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/fileline.h -------------------------------------------------------------------------------- /include/pantheios/frontend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/frontend.h -------------------------------------------------------------------------------- /include/pantheios/frontends/fe.N.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/frontends/fe.N.h -------------------------------------------------------------------------------- /include/pantheios/frontends/fe.WindowsRegistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/frontends/fe.WindowsRegistry.h -------------------------------------------------------------------------------- /include/pantheios/frontends/fe.all.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/frontends/fe.all.h -------------------------------------------------------------------------------- /include/pantheios/frontends/fe.fail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/frontends/fe.fail.h -------------------------------------------------------------------------------- /include/pantheios/frontends/fe.null.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/frontends/fe.null.h -------------------------------------------------------------------------------- /include/pantheios/frontends/fe.simple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/frontends/fe.simple.h -------------------------------------------------------------------------------- /include/pantheios/frontends/stock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/frontends/stock.h -------------------------------------------------------------------------------- /include/pantheios/generated/log_dispatch_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/generated/log_dispatch_functions.h -------------------------------------------------------------------------------- /include/pantheios/generated/log_dispatch_functions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/generated/log_dispatch_functions.hpp -------------------------------------------------------------------------------- /include/pantheios/generated/log_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/generated/log_functions.h -------------------------------------------------------------------------------- /include/pantheios/generated/log_functions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/generated/log_functions.hpp -------------------------------------------------------------------------------- /include/pantheios/generated/log_sev_functions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/generated/log_sev_functions.hpp -------------------------------------------------------------------------------- /include/pantheios/implicit_link/appl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/implicit_link/appl.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/be.ACE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/implicit_link/be.ACE.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/be.COMErrorObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/implicit_link/be.COMErrorObject.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/be.N.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/implicit_link/be.N.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/be.WindowsConsole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/implicit_link/be.WindowsConsole.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/be.WindowsDebugger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/implicit_link/be.WindowsDebugger.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/be.WindowsEventLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/implicit_link/be.WindowsEventLog.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/be.WindowsMessageBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/implicit_link/be.WindowsMessageBox.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/be.WindowsSyslog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/implicit_link/be.WindowsSyslog.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/be.console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/implicit_link/be.console.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/be.fail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/implicit_link/be.fail.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/be.file.WithCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/implicit_link/be.file.WithCallback.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/be.file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/implicit_link/be.file.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/be.fprintf.WithCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/implicit_link/be.fprintf.WithCallback.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/be.fprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/implicit_link/be.fprintf.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/be.lrsplit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/implicit_link/be.lrsplit.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/be.null.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/implicit_link/be.null.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/be.speech.WithCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/implicit_link/be.speech.WithCallback.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/be.speech.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/implicit_link/be.speech.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/be.syslog.WithCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/implicit_link/be.syslog.WithCallback.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/be.syslog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/implicit_link/be.syslog.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/be.test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/implicit_link/be.test.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/bec.ACE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/implicit_link/bec.ACE.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/bec.COMErrorObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/implicit_link/bec.COMErrorObject.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/bec.WindowsConsole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/implicit_link/bec.WindowsConsole.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/bec.WindowsDebugger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/implicit_link/bec.WindowsDebugger.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/bec.WindowsEventLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/implicit_link/bec.WindowsEventLog.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/bec.WindowsMessageBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/implicit_link/bec.WindowsMessageBox.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/bec.WindowsSyslog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/implicit_link/bec.WindowsSyslog.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/bec.console.WithCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/implicit_link/bec.console.WithCallback.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/bec.console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/implicit_link/bec.console.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/bec.fail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/implicit_link/bec.fail.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/bec.file.WithCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/implicit_link/bec.file.WithCallback.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/bec.file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/implicit_link/bec.file.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/bec.fprintf.WithCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/implicit_link/bec.fprintf.WithCallback.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/bec.fprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/implicit_link/bec.fprintf.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/bec.null.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/implicit_link/bec.null.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/bec.speech.WithCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/implicit_link/bec.speech.WithCallback.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/bec.speech.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/implicit_link/bec.speech.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/bec.stock.WithCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/implicit_link/bec.stock.WithCallback.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/bec.stock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/implicit_link/bec.stock.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/bec.syslog.WithCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/implicit_link/bec.syslog.WithCallback.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/bec.syslog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/implicit_link/bec.syslog.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/bec.test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/implicit_link/bec.test.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/bel.ACE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/implicit_link/bel.ACE.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/bel.COMErrorObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/implicit_link/bel.COMErrorObject.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/bel.WindowsConsole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/implicit_link/bel.WindowsConsole.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/bel.WindowsDebugger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/implicit_link/bel.WindowsDebugger.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/bel.WindowsEventLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/implicit_link/bel.WindowsEventLog.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/bel.WindowsMessageBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/implicit_link/bel.WindowsMessageBox.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/bel.WindowsSyslog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/implicit_link/bel.WindowsSyslog.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/bel.console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/implicit_link/bel.console.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/bel.fail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/implicit_link/bel.fail.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/bel.file.WithCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/implicit_link/bel.file.WithCallback.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/bel.file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/implicit_link/bel.file.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/bel.fprintf.WithCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/implicit_link/bel.fprintf.WithCallback.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/bel.fprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/implicit_link/bel.fprintf.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/bel.null.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/implicit_link/bel.null.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/bel.speech.WithCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/implicit_link/bel.speech.WithCallback.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/bel.speech.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/implicit_link/bel.speech.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/bel.syslog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/implicit_link/bel.syslog.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/ber.ACE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/implicit_link/ber.ACE.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/ber.COMErrorObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/implicit_link/ber.COMErrorObject.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/ber.WindowsConsole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/implicit_link/ber.WindowsConsole.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/ber.WindowsDebugger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/implicit_link/ber.WindowsDebugger.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/ber.WindowsEventLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/implicit_link/ber.WindowsEventLog.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/ber.WindowsMessageBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/implicit_link/ber.WindowsMessageBox.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/ber.WindowsSyslog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/implicit_link/ber.WindowsSyslog.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/ber.console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/implicit_link/ber.console.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/ber.fail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/implicit_link/ber.fail.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/ber.file.WithCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/implicit_link/ber.file.WithCallback.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/ber.file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/implicit_link/ber.file.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/ber.fprintf.WithCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/implicit_link/ber.fprintf.WithCallback.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/ber.fprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/implicit_link/ber.fprintf.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/ber.null.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/implicit_link/ber.null.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/ber.speech.WithCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/implicit_link/ber.speech.WithCallback.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/ber.speech.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/implicit_link/ber.speech.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/ber.syslog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/implicit_link/ber.syslog.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/implicit_link/core.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/fe.N.WithCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/implicit_link/fe.N.WithCallback.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/fe.N.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/implicit_link/fe.N.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/fe.WindowsRegistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/implicit_link/fe.WindowsRegistry.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/fe.all.WithCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/implicit_link/fe.all.WithCallback.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/fe.all.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/implicit_link/fe.all.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/fe.fail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/implicit_link/fe.fail.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/fe.null.WithCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/implicit_link/fe.null.WithCallback.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/fe.null.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/implicit_link/fe.null.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/fe.simple.WithCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/implicit_link/fe.simple.WithCallback.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/fe.simple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/implicit_link/fe.simple.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/implicit_link_base_.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/implicit_link/implicit_link_base_.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/implicit_link/util.h -------------------------------------------------------------------------------- /include/pantheios/init_codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/init_codes.h -------------------------------------------------------------------------------- /include/pantheios/inserters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/inserters.hpp -------------------------------------------------------------------------------- /include/pantheios/inserters/adaptor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/inserters/adaptor.hpp -------------------------------------------------------------------------------- /include/pantheios/inserters/args.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/inserters/args.hpp -------------------------------------------------------------------------------- /include/pantheios/inserters/b.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/inserters/b.hpp -------------------------------------------------------------------------------- /include/pantheios/inserters/b64.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/inserters/b64.hpp -------------------------------------------------------------------------------- /include/pantheios/inserters/blob.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/inserters/blob.hpp -------------------------------------------------------------------------------- /include/pantheios/inserters/boolean.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/inserters/boolean.hpp -------------------------------------------------------------------------------- /include/pantheios/inserters/ch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/inserters/ch.hpp -------------------------------------------------------------------------------- /include/pantheios/inserters/character.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/inserters/character.hpp -------------------------------------------------------------------------------- /include/pantheios/inserters/exception.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/inserters/exception.hpp -------------------------------------------------------------------------------- /include/pantheios/inserters/fmt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/inserters/fmt.hpp -------------------------------------------------------------------------------- /include/pantheios/inserters/hex_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/inserters/hex_ptr.hpp -------------------------------------------------------------------------------- /include/pantheios/inserters/hostid.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/inserters/hostid.hpp -------------------------------------------------------------------------------- /include/pantheios/inserters/i.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/inserters/i.hpp -------------------------------------------------------------------------------- /include/pantheios/inserters/ids.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/inserters/ids.hpp -------------------------------------------------------------------------------- /include/pantheios/inserters/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/inserters/integer.hpp -------------------------------------------------------------------------------- /include/pantheios/inserters/interval.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/inserters/interval.hpp -------------------------------------------------------------------------------- /include/pantheios/inserters/m2t.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/inserters/m2t.hpp -------------------------------------------------------------------------------- /include/pantheios/inserters/m2w.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/inserters/m2w.hpp -------------------------------------------------------------------------------- /include/pantheios/inserters/p.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/inserters/p.hpp -------------------------------------------------------------------------------- /include/pantheios/inserters/pad.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/inserters/pad.hpp -------------------------------------------------------------------------------- /include/pantheios/inserters/pointer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/inserters/pointer.hpp -------------------------------------------------------------------------------- /include/pantheios/inserters/processid.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/inserters/processid.hpp -------------------------------------------------------------------------------- /include/pantheios/inserters/real.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/inserters/real.hpp -------------------------------------------------------------------------------- /include/pantheios/inserters/slice.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/inserters/slice.hpp -------------------------------------------------------------------------------- /include/pantheios/inserters/stream_character.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/inserters/stream_character.hpp -------------------------------------------------------------------------------- /include/pantheios/inserters/threadid.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/inserters/threadid.hpp -------------------------------------------------------------------------------- /include/pantheios/inserters/variant_bool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/inserters/variant_bool.hpp -------------------------------------------------------------------------------- /include/pantheios/inserters/vb.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/inserters/vb.hpp -------------------------------------------------------------------------------- /include/pantheios/inserters/w2m.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/inserters/w2m.hpp -------------------------------------------------------------------------------- /include/pantheios/inserters/w2t.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/inserters/w2t.hpp -------------------------------------------------------------------------------- /include/pantheios/inserters/windows/hive.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/inserters/windows/hive.hpp -------------------------------------------------------------------------------- /include/pantheios/inserters/windows/sc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/inserters/windows/sc.hpp -------------------------------------------------------------------------------- /include/pantheios/inserters/windows/status_code.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/inserters/windows/status_code.hpp -------------------------------------------------------------------------------- /include/pantheios/inserters/xi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/inserters/xi.hpp -------------------------------------------------------------------------------- /include/pantheios/inserters/xp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/inserters/xp.hpp -------------------------------------------------------------------------------- /include/pantheios/internal/generated/log_functions.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/internal/generated/log_functions.inl -------------------------------------------------------------------------------- /include/pantheios/internal/initialiser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/internal/initialiser.hpp -------------------------------------------------------------------------------- /include/pantheios/internal/lean.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/internal/lean.h -------------------------------------------------------------------------------- /include/pantheios/internal/nox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/internal/nox.h -------------------------------------------------------------------------------- /include/pantheios/internal/safestr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/internal/safestr.h -------------------------------------------------------------------------------- /include/pantheios/internal/shim_declarations.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/internal/shim_declarations.hpp -------------------------------------------------------------------------------- /include/pantheios/internal/slice.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/internal/slice.hpp -------------------------------------------------------------------------------- /include/pantheios/internal/stock_levels.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/internal/stock_levels.hpp -------------------------------------------------------------------------------- /include/pantheios/internal/string_encoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/internal/string_encoding.h -------------------------------------------------------------------------------- /include/pantheios/internal/threading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/internal/threading.h -------------------------------------------------------------------------------- /include/pantheios/internal/winlean.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/internal/winlean.h -------------------------------------------------------------------------------- /include/pantheios/pan.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/pan.hpp -------------------------------------------------------------------------------- /include/pantheios/pantheios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/pantheios.h -------------------------------------------------------------------------------- /include/pantheios/pantheios.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/pantheios.hpp -------------------------------------------------------------------------------- /include/pantheios/quality/contract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/quality/contract.h -------------------------------------------------------------------------------- /include/pantheios/severity/levels.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/severity/levels.hpp -------------------------------------------------------------------------------- /include/pantheios/shims/access/string/core/pan_severity_t.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/shims/access/string/core/pan_severity_t.hpp -------------------------------------------------------------------------------- /include/pantheios/shims/access/string/core/pan_slice_t.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/shims/access/string/core/pan_slice_t.hpp -------------------------------------------------------------------------------- /include/pantheios/trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/trace.h -------------------------------------------------------------------------------- /include/pantheios/util/backends/arguments.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/util/backends/arguments.h -------------------------------------------------------------------------------- /include/pantheios/util/backends/context.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/util/backends/context.hpp -------------------------------------------------------------------------------- /include/pantheios/util/com/exception_helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/util/com/exception_helpers.hpp -------------------------------------------------------------------------------- /include/pantheios/util/core/apidefs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/util/core/apidefs.hpp -------------------------------------------------------------------------------- /include/pantheios/util/memory/auto_buffer_selector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/util/memory/auto_buffer_selector.hpp -------------------------------------------------------------------------------- /include/pantheios/util/memory/inserters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/util/memory/inserters.hpp -------------------------------------------------------------------------------- /include/pantheios/util/memory/memcopy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/util/memory/memcopy.h -------------------------------------------------------------------------------- /include/pantheios/util/severity/ACE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/util/severity/ACE.h -------------------------------------------------------------------------------- /include/pantheios/util/severity/WindowsEventLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/util/severity/WindowsEventLog.h -------------------------------------------------------------------------------- /include/pantheios/util/severity/syslog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/util/severity/syslog.h -------------------------------------------------------------------------------- /include/pantheios/util/string/date_elements_to_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/util/string/date_elements_to_string.h -------------------------------------------------------------------------------- /include/pantheios/util/string/snprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/util/string/snprintf.h -------------------------------------------------------------------------------- /include/pantheios/util/string/strdup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/util/string/strdup.h -------------------------------------------------------------------------------- /include/pantheios/util/string/strnlen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/util/string/strnlen.h -------------------------------------------------------------------------------- /include/pantheios/util/system/hostname.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/util/system/hostname.h -------------------------------------------------------------------------------- /include/pantheios/util/system/processid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/util/system/processid.h -------------------------------------------------------------------------------- /include/pantheios/util/system/threadid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/util/system/threadid.h -------------------------------------------------------------------------------- /include/pantheios/util/time/currenttime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/pantheios/util/time/currenttime.h -------------------------------------------------------------------------------- /include/readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/include/readme.html -------------------------------------------------------------------------------- /lib/readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/lib/readme.html -------------------------------------------------------------------------------- /prepare_cmake.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/prepare_cmake.sh -------------------------------------------------------------------------------- /project_map.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/project_map.html -------------------------------------------------------------------------------- /projects/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/CMakeLists.txt -------------------------------------------------------------------------------- /projects/backends/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/CMakeLists.txt -------------------------------------------------------------------------------- /projects/backends/be.ACE/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/backends/be.ACE/vc10/be.ACE.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/be.ACE/vc10/be.ACE.vcxproj -------------------------------------------------------------------------------- /projects/backends/be.ACE/vc10/be.ACE.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/be.ACE/vc10/be.ACE.vcxproj.filters -------------------------------------------------------------------------------- /projects/backends/be.ACE/vc6/be.ACE.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/be.ACE/vc6/be.ACE.dsp -------------------------------------------------------------------------------- /projects/backends/be.COMErrorObject/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/be.COMErrorObject/CMakeLists.txt -------------------------------------------------------------------------------- /projects/backends/be.COMErrorObject/vc6/be.COMErrorObject.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/be.COMErrorObject/vc6/be.COMErrorObject.dsp -------------------------------------------------------------------------------- /projects/backends/be.N/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/be.N/CMakeLists.txt -------------------------------------------------------------------------------- /projects/backends/be.N/vc10/be.N.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/be.N/vc10/be.N.vcxproj -------------------------------------------------------------------------------- /projects/backends/be.N/vc10/be.N.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/be.N/vc10/be.N.vcxproj.filters -------------------------------------------------------------------------------- /projects/backends/be.N/vc6/be.N.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/be.N/vc6/be.N.dsp -------------------------------------------------------------------------------- /projects/backends/be.WindowsConsole/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/be.WindowsConsole/CMakeLists.txt -------------------------------------------------------------------------------- /projects/backends/be.WindowsConsole/vc6/be.WindowsConsole.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/be.WindowsConsole/vc6/be.WindowsConsole.dsp -------------------------------------------------------------------------------- /projects/backends/be.WindowsDebugger/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/backends/be.WindowsEventLog/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/backends/be.WindowsMessageBox/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/backends/be.WindowsSyslog/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/be.WindowsSyslog/CMakeLists.txt -------------------------------------------------------------------------------- /projects/backends/be.WindowsSyslog/vc6/be.WindowsSyslog.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/be.WindowsSyslog/vc6/be.WindowsSyslog.dsp -------------------------------------------------------------------------------- /projects/backends/be.fail/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/be.fail/CMakeLists.txt -------------------------------------------------------------------------------- /projects/backends/be.fail/vc10/be.fail.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/be.fail/vc10/be.fail.vcxproj -------------------------------------------------------------------------------- /projects/backends/be.fail/vc10/be.fail.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/be.fail/vc10/be.fail.vcxproj.filters -------------------------------------------------------------------------------- /projects/backends/be.fail/vc6/be.fail.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/be.fail/vc6/be.fail.dsp -------------------------------------------------------------------------------- /projects/backends/be.file/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/be.file/CMakeLists.txt -------------------------------------------------------------------------------- /projects/backends/be.file/vc10/be.file.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/be.file/vc10/be.file.vcxproj -------------------------------------------------------------------------------- /projects/backends/be.file/vc10/be.file.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/be.file/vc10/be.file.vcxproj.filters -------------------------------------------------------------------------------- /projects/backends/be.file/vc6/be.file.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/be.file/vc6/be.file.dsp -------------------------------------------------------------------------------- /projects/backends/be.fprintf/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/be.fprintf/CMakeLists.txt -------------------------------------------------------------------------------- /projects/backends/be.fprintf/vc10/be.fprintf.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/be.fprintf/vc10/be.fprintf.vcxproj -------------------------------------------------------------------------------- /projects/backends/be.fprintf/vc10/be.fprintf.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/be.fprintf/vc10/be.fprintf.vcxproj.filters -------------------------------------------------------------------------------- /projects/backends/be.fprintf/vc6/be.fprintf.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/be.fprintf/vc6/be.fprintf.dsp -------------------------------------------------------------------------------- /projects/backends/be.loader/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/backends/be.loader/vc10/be.loader.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/be.loader/vc10/be.loader.vcxproj -------------------------------------------------------------------------------- /projects/backends/be.loader/vc10/be.loader.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/be.loader/vc10/be.loader.vcxproj.filters -------------------------------------------------------------------------------- /projects/backends/be.lrsplit/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/be.lrsplit/CMakeLists.txt -------------------------------------------------------------------------------- /projects/backends/be.lrsplit/vc10/be.lrsplit.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/be.lrsplit/vc10/be.lrsplit.vcxproj -------------------------------------------------------------------------------- /projects/backends/be.lrsplit/vc10/be.lrsplit.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/be.lrsplit/vc10/be.lrsplit.vcxproj.filters -------------------------------------------------------------------------------- /projects/backends/be.lrsplit/vc6/be.lrsplit.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/be.lrsplit/vc6/be.lrsplit.dsp -------------------------------------------------------------------------------- /projects/backends/be.null/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/be.null/CMakeLists.txt -------------------------------------------------------------------------------- /projects/backends/be.null/vc10/be.null.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/be.null/vc10/be.null.vcxproj -------------------------------------------------------------------------------- /projects/backends/be.null/vc10/be.null.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/be.null/vc10/be.null.vcxproj.filters -------------------------------------------------------------------------------- /projects/backends/be.null/vc6/be.null.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/be.null/vc6/be.null.dsp -------------------------------------------------------------------------------- /projects/backends/be.speech/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/be.speech/CMakeLists.txt -------------------------------------------------------------------------------- /projects/backends/be.speech/vc10/be.speech.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/be.speech/vc10/be.speech.vcxproj -------------------------------------------------------------------------------- /projects/backends/be.speech/vc10/be.speech.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/be.speech/vc10/be.speech.vcxproj.filters -------------------------------------------------------------------------------- /projects/backends/be.syslog/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/be.syslog/CMakeLists.txt -------------------------------------------------------------------------------- /projects/backends/be.syslog/vc10/be.syslog.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/be.syslog/vc10/be.syslog.vcxproj -------------------------------------------------------------------------------- /projects/backends/be.syslog/vc10/be.syslog.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/be.syslog/vc10/be.syslog.vcxproj.filters -------------------------------------------------------------------------------- /projects/backends/be.syslog/vc6/be.syslog.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/be.syslog/vc6/be.syslog.dsp -------------------------------------------------------------------------------- /projects/backends/be.test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/be.test/CMakeLists.txt -------------------------------------------------------------------------------- /projects/backends/be.test/vc10/be.test.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/be.test/vc10/be.test.vcxproj -------------------------------------------------------------------------------- /projects/backends/be.test/vc10/be.test.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/be.test/vc10/be.test.vcxproj.filters -------------------------------------------------------------------------------- /projects/backends/be.test/vc6/be.test.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/be.test/vc6/be.test.dsp -------------------------------------------------------------------------------- /projects/backends/bec.ACE.WithCallback/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/backends/bec.ACE/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/backends/bec.ACE/vc10/bec.ACE.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/bec.ACE/vc10/bec.ACE.vcxproj -------------------------------------------------------------------------------- /projects/backends/bec.ACE/vc10/bec.ACE.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/bec.ACE/vc10/bec.ACE.vcxproj.filters -------------------------------------------------------------------------------- /projects/backends/bec.ACE/vc6/bec.ACE.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/bec.ACE/vc6/bec.ACE.dsp -------------------------------------------------------------------------------- /projects/backends/bec.COMErrorObject.WithCallback/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/backends/bec.COMErrorObject/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/bec.COMErrorObject/CMakeLists.txt -------------------------------------------------------------------------------- /projects/backends/bec.WindowsConsole.WithCallback/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/backends/bec.WindowsConsole/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/bec.WindowsConsole/CMakeLists.txt -------------------------------------------------------------------------------- /projects/backends/bec.WindowsDebugger/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/backends/bec.WindowsEventLog.WithCallback/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/backends/bec.WindowsEventLog/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/backends/bec.WindowsMessageBox.WithCallback/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/backends/bec.WindowsMessageBox/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/backends/bec.WindowsSyslog/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/bec.WindowsSyslog/CMakeLists.txt -------------------------------------------------------------------------------- /projects/backends/bec.WindowsSyslog/vc6/bec.WindowsSyslog.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/bec.WindowsSyslog/vc6/bec.WindowsSyslog.dsp -------------------------------------------------------------------------------- /projects/backends/bec.fail.WithCallback/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/bec.fail.WithCallback/CMakeLists.txt -------------------------------------------------------------------------------- /projects/backends/bec.fail/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/bec.fail/CMakeLists.txt -------------------------------------------------------------------------------- /projects/backends/bec.fail/vc10/bec.fail.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/bec.fail/vc10/bec.fail.vcxproj -------------------------------------------------------------------------------- /projects/backends/bec.fail/vc10/bec.fail.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/bec.fail/vc10/bec.fail.vcxproj.filters -------------------------------------------------------------------------------- /projects/backends/bec.fail/vc6/bec.fail.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/bec.fail/vc6/bec.fail.dsp -------------------------------------------------------------------------------- /projects/backends/bec.file.WithCallback/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/bec.file.WithCallback/CMakeLists.txt -------------------------------------------------------------------------------- /projects/backends/bec.file/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/bec.file/CMakeLists.txt -------------------------------------------------------------------------------- /projects/backends/bec.file/vc10/bec.file.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/bec.file/vc10/bec.file.vcxproj -------------------------------------------------------------------------------- /projects/backends/bec.file/vc10/bec.file.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/bec.file/vc10/bec.file.vcxproj.filters -------------------------------------------------------------------------------- /projects/backends/bec.file/vc6/bec.file.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/bec.file/vc6/bec.file.dsp -------------------------------------------------------------------------------- /projects/backends/bec.fprintf.WithCallback/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/bec.fprintf.WithCallback/CMakeLists.txt -------------------------------------------------------------------------------- /projects/backends/bec.fprintf/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/bec.fprintf/CMakeLists.txt -------------------------------------------------------------------------------- /projects/backends/bec.fprintf/vc10/bec.fprintf.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/bec.fprintf/vc10/bec.fprintf.vcxproj -------------------------------------------------------------------------------- /projects/backends/bec.fprintf/vc6/bec.fprintf.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/bec.fprintf/vc6/bec.fprintf.dsp -------------------------------------------------------------------------------- /projects/backends/bec.loader.WithCallback/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/bec.loader.WithCallback/CMakeLists.txt -------------------------------------------------------------------------------- /projects/backends/bec.loader/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/bec.loader/CMakeLists.txt -------------------------------------------------------------------------------- /projects/backends/bec.loader/vc10/bec.loader.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/bec.loader/vc10/bec.loader.vcxproj -------------------------------------------------------------------------------- /projects/backends/bec.loader/vc10/bec.loader.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/bec.loader/vc10/bec.loader.vcxproj.filters -------------------------------------------------------------------------------- /projects/backends/bec.null.WithCallback/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/bec.null.WithCallback/CMakeLists.txt -------------------------------------------------------------------------------- /projects/backends/bec.null/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/bec.null/CMakeLists.txt -------------------------------------------------------------------------------- /projects/backends/bec.null/vc10/bec.null.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/bec.null/vc10/bec.null.vcxproj -------------------------------------------------------------------------------- /projects/backends/bec.null/vc10/bec.null.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/bec.null/vc10/bec.null.vcxproj.filters -------------------------------------------------------------------------------- /projects/backends/bec.null/vc6/bec.null.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/bec.null/vc6/bec.null.dsp -------------------------------------------------------------------------------- /projects/backends/bec.speech.WithCallback/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/backends/bec.speech/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/bec.speech/CMakeLists.txt -------------------------------------------------------------------------------- /projects/backends/bec.speech/vc10/bec.speech.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/bec.speech/vc10/bec.speech.vcxproj -------------------------------------------------------------------------------- /projects/backends/bec.speech/vc10/bec.speech.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/bec.speech/vc10/bec.speech.vcxproj.filters -------------------------------------------------------------------------------- /projects/backends/bec.speech/vc6/bec.speech.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/bec.speech/vc6/bec.speech.dsp -------------------------------------------------------------------------------- /projects/backends/bec.stock.WithCallback/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/bec.stock.WithCallback/CMakeLists.txt -------------------------------------------------------------------------------- /projects/backends/bec.stock/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/bec.stock/CMakeLists.txt -------------------------------------------------------------------------------- /projects/backends/bec.stock/vc10/bec.stock.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/bec.stock/vc10/bec.stock.vcxproj -------------------------------------------------------------------------------- /projects/backends/bec.stock/vc10/bec.stock.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/bec.stock/vc10/bec.stock.vcxproj.filters -------------------------------------------------------------------------------- /projects/backends/bec.syslog.WithCallback/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/bec.syslog.WithCallback/CMakeLists.txt -------------------------------------------------------------------------------- /projects/backends/bec.syslog/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/bec.syslog/CMakeLists.txt -------------------------------------------------------------------------------- /projects/backends/bec.syslog/vc10/bec.syslog.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/bec.syslog/vc10/bec.syslog.vcxproj -------------------------------------------------------------------------------- /projects/backends/bec.syslog/vc10/bec.syslog.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/bec.syslog/vc10/bec.syslog.vcxproj.filters -------------------------------------------------------------------------------- /projects/backends/bec.syslog/vc6/bec.syslog.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/bec.syslog/vc6/bec.syslog.dsp -------------------------------------------------------------------------------- /projects/backends/bec.test.WithCallback/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/bec.test.WithCallback/CMakeLists.txt -------------------------------------------------------------------------------- /projects/backends/bec.test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/bec.test/CMakeLists.txt -------------------------------------------------------------------------------- /projects/backends/bec.test/vc10/bec.test.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/bec.test/vc10/bec.test.vcxproj -------------------------------------------------------------------------------- /projects/backends/bec.test/vc10/bec.test.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/bec.test/vc10/bec.test.vcxproj.filters -------------------------------------------------------------------------------- /projects/backends/bec.test/vc6/bec.test.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/bec.test/vc6/bec.test.dsp -------------------------------------------------------------------------------- /projects/backends/bel.ACE/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/backends/bel.ACE/vc10/bel.ACE.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/bel.ACE/vc10/bel.ACE.vcxproj -------------------------------------------------------------------------------- /projects/backends/bel.ACE/vc10/bel.ACE.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/bel.ACE/vc10/bel.ACE.vcxproj.filters -------------------------------------------------------------------------------- /projects/backends/bel.ACE/vc6/bel.ACE.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/bel.ACE/vc6/bel.ACE.dsp -------------------------------------------------------------------------------- /projects/backends/bel.COMErrorObject/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/backends/bel.WindowsConsole/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/backends/bel.WindowsDebugger/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/backends/bel.WindowsEventLog/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/backends/bel.WindowsMessageBox/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/backends/bel.WindowsSyslog/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/backends/bel.WindowsSyslog/vc6/bel.WindowsSyslog.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/bel.WindowsSyslog/vc6/bel.WindowsSyslog.dsp -------------------------------------------------------------------------------- /projects/backends/bel.fail/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/bel.fail/CMakeLists.txt -------------------------------------------------------------------------------- /projects/backends/bel.fail/vc10/bel.fail.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/bel.fail/vc10/bel.fail.vcxproj -------------------------------------------------------------------------------- /projects/backends/bel.fail/vc10/bel.fail.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/bel.fail/vc10/bel.fail.vcxproj.filters -------------------------------------------------------------------------------- /projects/backends/bel.fail/vc6/bel.fail.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/bel.fail/vc6/bel.fail.dsp -------------------------------------------------------------------------------- /projects/backends/bel.file/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/bel.file/CMakeLists.txt -------------------------------------------------------------------------------- /projects/backends/bel.file/vc10/bel.file.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/bel.file/vc10/bel.file.vcxproj -------------------------------------------------------------------------------- /projects/backends/bel.file/vc10/bel.file.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/bel.file/vc10/bel.file.vcxproj.filters -------------------------------------------------------------------------------- /projects/backends/bel.file/vc6/bel.file.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/bel.file/vc6/bel.file.dsp -------------------------------------------------------------------------------- /projects/backends/bel.fprintf/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/bel.fprintf/CMakeLists.txt -------------------------------------------------------------------------------- /projects/backends/bel.fprintf/vc10/bel.fprintf.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/bel.fprintf/vc10/bel.fprintf.vcxproj -------------------------------------------------------------------------------- /projects/backends/bel.fprintf/vc6/bel.fprintf.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/bel.fprintf/vc6/bel.fprintf.dsp -------------------------------------------------------------------------------- /projects/backends/bel.loader/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/backends/bel.loader/vc10/bel.loader.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/bel.loader/vc10/bel.loader.vcxproj -------------------------------------------------------------------------------- /projects/backends/bel.loader/vc10/bel.loader.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/bel.loader/vc10/bel.loader.vcxproj.filters -------------------------------------------------------------------------------- /projects/backends/bel.null/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/bel.null/CMakeLists.txt -------------------------------------------------------------------------------- /projects/backends/bel.null/vc10/bel.null.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/bel.null/vc10/bel.null.vcxproj -------------------------------------------------------------------------------- /projects/backends/bel.null/vc10/bel.null.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/bel.null/vc10/bel.null.vcxproj.filters -------------------------------------------------------------------------------- /projects/backends/bel.null/vc6/bel.null.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/bel.null/vc6/bel.null.dsp -------------------------------------------------------------------------------- /projects/backends/bel.speech/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/backends/bel.speech/vc10/bel.speech.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/bel.speech/vc10/bel.speech.vcxproj -------------------------------------------------------------------------------- /projects/backends/bel.speech/vc10/bel.speech.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/bel.speech/vc10/bel.speech.vcxproj.filters -------------------------------------------------------------------------------- /projects/backends/bel.syslog/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/bel.syslog/CMakeLists.txt -------------------------------------------------------------------------------- /projects/backends/bel.syslog/vc10/bel.syslog.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/bel.syslog/vc10/bel.syslog.vcxproj -------------------------------------------------------------------------------- /projects/backends/bel.syslog/vc10/bel.syslog.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/bel.syslog/vc10/bel.syslog.vcxproj.filters -------------------------------------------------------------------------------- /projects/backends/bel.syslog/vc6/bel.syslog.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/bel.syslog/vc6/bel.syslog.dsp -------------------------------------------------------------------------------- /projects/backends/bel.test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/bel.test/CMakeLists.txt -------------------------------------------------------------------------------- /projects/backends/bel.test/vc10/bel.test.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/bel.test/vc10/bel.test.vcxproj -------------------------------------------------------------------------------- /projects/backends/bel.test/vc10/bel.test.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/bel.test/vc10/bel.test.vcxproj.filters -------------------------------------------------------------------------------- /projects/backends/bel.test/vc6/bel.test.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/bel.test/vc6/bel.test.dsp -------------------------------------------------------------------------------- /projects/backends/ber.ACE/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/backends/ber.ACE/vc10/ber.ACE.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/ber.ACE/vc10/ber.ACE.vcxproj -------------------------------------------------------------------------------- /projects/backends/ber.ACE/vc10/ber.ACE.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/ber.ACE/vc10/ber.ACE.vcxproj.filters -------------------------------------------------------------------------------- /projects/backends/ber.ACE/vc6/ber.ACE.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/ber.ACE/vc6/ber.ACE.dsp -------------------------------------------------------------------------------- /projects/backends/ber.COMErrorObject/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/backends/ber.WindowsConsole/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/backends/ber.WindowsDebugger/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/backends/ber.WindowsEventLog/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/backends/ber.WindowsMessageBox/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/backends/ber.WindowsSyslog/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/backends/ber.WindowsSyslog/vc6/ber.WindowsSyslog.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/ber.WindowsSyslog/vc6/ber.WindowsSyslog.dsp -------------------------------------------------------------------------------- /projects/backends/ber.fail/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/ber.fail/CMakeLists.txt -------------------------------------------------------------------------------- /projects/backends/ber.fail/vc10/ber.fail.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/ber.fail/vc10/ber.fail.vcxproj -------------------------------------------------------------------------------- /projects/backends/ber.fail/vc10/ber.fail.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/ber.fail/vc10/ber.fail.vcxproj.filters -------------------------------------------------------------------------------- /projects/backends/ber.fail/vc6/ber.fail.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/ber.fail/vc6/ber.fail.dsp -------------------------------------------------------------------------------- /projects/backends/ber.file/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/ber.file/CMakeLists.txt -------------------------------------------------------------------------------- /projects/backends/ber.file/vc10/ber.file.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/ber.file/vc10/ber.file.vcxproj -------------------------------------------------------------------------------- /projects/backends/ber.file/vc10/ber.file.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/ber.file/vc10/ber.file.vcxproj.filters -------------------------------------------------------------------------------- /projects/backends/ber.file/vc6/ber.file.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/ber.file/vc6/ber.file.dsp -------------------------------------------------------------------------------- /projects/backends/ber.fprintf/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/ber.fprintf/CMakeLists.txt -------------------------------------------------------------------------------- /projects/backends/ber.fprintf/vc10/ber.fprintf.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/ber.fprintf/vc10/ber.fprintf.vcxproj -------------------------------------------------------------------------------- /projects/backends/ber.fprintf/vc6/ber.fprintf.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/ber.fprintf/vc6/ber.fprintf.dsp -------------------------------------------------------------------------------- /projects/backends/ber.loader/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/backends/ber.loader/vc10/ber.loader.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/ber.loader/vc10/ber.loader.vcxproj -------------------------------------------------------------------------------- /projects/backends/ber.loader/vc10/ber.loader.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/ber.loader/vc10/ber.loader.vcxproj.filters -------------------------------------------------------------------------------- /projects/backends/ber.null/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/ber.null/CMakeLists.txt -------------------------------------------------------------------------------- /projects/backends/ber.null/vc10/ber.null.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/ber.null/vc10/ber.null.vcxproj -------------------------------------------------------------------------------- /projects/backends/ber.null/vc10/ber.null.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/ber.null/vc10/ber.null.vcxproj.filters -------------------------------------------------------------------------------- /projects/backends/ber.null/vc6/ber.null.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/ber.null/vc6/ber.null.dsp -------------------------------------------------------------------------------- /projects/backends/ber.speech/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/backends/ber.speech/vc10/ber.speech.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/ber.speech/vc10/ber.speech.vcxproj -------------------------------------------------------------------------------- /projects/backends/ber.speech/vc10/ber.speech.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/ber.speech/vc10/ber.speech.vcxproj.filters -------------------------------------------------------------------------------- /projects/backends/ber.syslog/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/ber.syslog/CMakeLists.txt -------------------------------------------------------------------------------- /projects/backends/ber.syslog/vc10/ber.syslog.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/ber.syslog/vc10/ber.syslog.vcxproj -------------------------------------------------------------------------------- /projects/backends/ber.syslog/vc10/ber.syslog.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/ber.syslog/vc10/ber.syslog.vcxproj.filters -------------------------------------------------------------------------------- /projects/backends/ber.syslog/vc6/ber.syslog.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/ber.syslog/vc6/ber.syslog.dsp -------------------------------------------------------------------------------- /projects/backends/ber.test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/ber.test/CMakeLists.txt -------------------------------------------------------------------------------- /projects/backends/ber.test/vc10/ber.test.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/ber.test/vc10/ber.test.vcxproj -------------------------------------------------------------------------------- /projects/backends/ber.test/vc10/ber.test.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/ber.test/vc10/ber.test.vcxproj.filters -------------------------------------------------------------------------------- /projects/backends/ber.test/vc6/ber.test.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/ber.test/vc6/ber.test.dsp -------------------------------------------------------------------------------- /projects/backends/pantheios.backends.vc6.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/backends/pantheios.backends.vc6.dsw -------------------------------------------------------------------------------- /projects/core/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/core/CMakeLists.txt -------------------------------------------------------------------------------- /projects/core/pantheios.core.vc6.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/core/pantheios.core.vc6.dsw -------------------------------------------------------------------------------- /projects/core/vc10/pantheios.core.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/core/vc10/pantheios.core.vcxproj -------------------------------------------------------------------------------- /projects/core/vc10/pantheios.core.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/core/vc10/pantheios.core.vcxproj.filters -------------------------------------------------------------------------------- /projects/core/vc6/pantheios.core.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/core/vc6/pantheios.core.dsp -------------------------------------------------------------------------------- /projects/frontends/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/frontends/CMakeLists.txt -------------------------------------------------------------------------------- /projects/frontends/fe.N.WithCallback/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/frontends/fe.N.WithCallback/CMakeLists.txt -------------------------------------------------------------------------------- /projects/frontends/fe.N/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/frontends/fe.N/CMakeLists.txt -------------------------------------------------------------------------------- /projects/frontends/fe.N/vc10/fe.N.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/frontends/fe.N/vc10/fe.N.vcxproj -------------------------------------------------------------------------------- /projects/frontends/fe.N/vc10/fe.N.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/frontends/fe.N/vc10/fe.N.vcxproj.filters -------------------------------------------------------------------------------- /projects/frontends/fe.N/vc6/fe.N.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/frontends/fe.N/vc6/fe.N.dsp -------------------------------------------------------------------------------- /projects/frontends/fe.WindowsRegistry/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/frontends/fe.WindowsRegistry/CMakeLists.txt -------------------------------------------------------------------------------- /projects/frontends/fe.all.WithCallback/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/frontends/fe.all.WithCallback/CMakeLists.txt -------------------------------------------------------------------------------- /projects/frontends/fe.all/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/frontends/fe.all/CMakeLists.txt -------------------------------------------------------------------------------- /projects/frontends/fe.all/vc10/fe.all.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/frontends/fe.all/vc10/fe.all.vcxproj -------------------------------------------------------------------------------- /projects/frontends/fe.all/vc10/fe.all.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/frontends/fe.all/vc10/fe.all.vcxproj.filters -------------------------------------------------------------------------------- /projects/frontends/fe.all/vc6/fe.all.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/frontends/fe.all/vc6/fe.all.dsp -------------------------------------------------------------------------------- /projects/frontends/fe.fail.WithCallback/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/frontends/fe.fail.WithCallback/CMakeLists.txt -------------------------------------------------------------------------------- /projects/frontends/fe.fail/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/frontends/fe.fail/CMakeLists.txt -------------------------------------------------------------------------------- /projects/frontends/fe.fail/vc10/fe.fail.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/frontends/fe.fail/vc10/fe.fail.vcxproj -------------------------------------------------------------------------------- /projects/frontends/fe.fail/vc10/fe.fail.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/frontends/fe.fail/vc10/fe.fail.vcxproj.filters -------------------------------------------------------------------------------- /projects/frontends/fe.null.WithCallback/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/frontends/fe.null.WithCallback/CMakeLists.txt -------------------------------------------------------------------------------- /projects/frontends/fe.null/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/frontends/fe.null/CMakeLists.txt -------------------------------------------------------------------------------- /projects/frontends/fe.null/vc10/fe.null.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/frontends/fe.null/vc10/fe.null.vcxproj -------------------------------------------------------------------------------- /projects/frontends/fe.null/vc10/fe.null.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/frontends/fe.null/vc10/fe.null.vcxproj.filters -------------------------------------------------------------------------------- /projects/frontends/fe.null/vc6/fe.null.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/frontends/fe.null/vc6/fe.null.dsp -------------------------------------------------------------------------------- /projects/frontends/fe.simple.WithCallback/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/frontends/fe.simple.WithCallback/CMakeLists.txt -------------------------------------------------------------------------------- /projects/frontends/fe.simple/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/frontends/fe.simple/CMakeLists.txt -------------------------------------------------------------------------------- /projects/frontends/fe.simple/vc10/fe.simple.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/frontends/fe.simple/vc10/fe.simple.vcxproj -------------------------------------------------------------------------------- /projects/frontends/fe.simple/vc10/fe.simple.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/frontends/fe.simple/vc10/fe.simple.vcxproj.filters -------------------------------------------------------------------------------- /projects/frontends/fe.simple/vc6/fe.simple.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/frontends/fe.simple/vc6/fe.simple.dsp -------------------------------------------------------------------------------- /projects/frontends/pantheios.frontends.vc6.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/frontends/pantheios.frontends.vc6.dsw -------------------------------------------------------------------------------- /projects/readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/readme.html -------------------------------------------------------------------------------- /projects/util/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/util/CMakeLists.txt -------------------------------------------------------------------------------- /projects/util/pantheios.util.vc6.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/util/pantheios.util.vc6.dsw -------------------------------------------------------------------------------- /projects/util/vc10/pantheios.util.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/util/vc10/pantheios.util.vcxproj -------------------------------------------------------------------------------- /projects/util/vc10/pantheios.util.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/util/vc10/pantheios.util.vcxproj.filters -------------------------------------------------------------------------------- /projects/util/vc6/pantheios.util.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/projects/util/vc6/pantheios.util.dsp -------------------------------------------------------------------------------- /remove_cmake_artefacts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/remove_cmake_artefacts.sh -------------------------------------------------------------------------------- /run_all_scratch_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/run_all_scratch_tests.sh -------------------------------------------------------------------------------- /run_all_unit_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/run_all_unit_tests.sh -------------------------------------------------------------------------------- /scripts/make_hdrs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/scripts/make_hdrs.rb -------------------------------------------------------------------------------- /scripts/readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/scripts/readme.html -------------------------------------------------------------------------------- /src/backends/be.N.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/src/backends/be.N.c -------------------------------------------------------------------------------- /src/backends/be.lrsplit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/src/backends/be.lrsplit.c -------------------------------------------------------------------------------- /src/backends/be/be.ACE.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/src/backends/be/be.ACE.c -------------------------------------------------------------------------------- /src/backends/be/be.COMErrorObject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/src/backends/be/be.COMErrorObject.c -------------------------------------------------------------------------------- /src/backends/be/be.WindowsConsole.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/src/backends/be/be.WindowsConsole.c -------------------------------------------------------------------------------- /src/backends/be/be.WindowsDebugger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/src/backends/be/be.WindowsDebugger.c -------------------------------------------------------------------------------- /src/backends/be/be.WindowsEventLog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/src/backends/be/be.WindowsEventLog.c -------------------------------------------------------------------------------- /src/backends/be/be.WindowsMessageBox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/src/backends/be/be.WindowsMessageBox.c -------------------------------------------------------------------------------- /src/backends/be/be.WindowsSyslog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/src/backends/be/be.WindowsSyslog.c -------------------------------------------------------------------------------- /src/backends/be/be.fail.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/src/backends/be/be.fail.c -------------------------------------------------------------------------------- /src/backends/be/be.file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/src/backends/be/be.file.c -------------------------------------------------------------------------------- /src/backends/be/be.fprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/src/backends/be/be.fprintf.c -------------------------------------------------------------------------------- /src/backends/be/be.null.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/src/backends/be/be.null.c -------------------------------------------------------------------------------- /src/backends/be/be.speech.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/src/backends/be/be.speech.c -------------------------------------------------------------------------------- /src/backends/be/be.syslog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/src/backends/be/be.syslog.c -------------------------------------------------------------------------------- /src/backends/be/be.test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/src/backends/be/be.test.c -------------------------------------------------------------------------------- /src/backends/bec.ACE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/src/backends/bec.ACE.cpp -------------------------------------------------------------------------------- /src/backends/bec.COMErrorObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/src/backends/bec.COMErrorObject.cpp -------------------------------------------------------------------------------- /src/backends/bec.WindowsConsole.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/src/backends/bec.WindowsConsole.cpp -------------------------------------------------------------------------------- /src/backends/bec.WindowsDebugger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/src/backends/bec.WindowsDebugger.cpp -------------------------------------------------------------------------------- /src/backends/bec.WindowsEventLog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/src/backends/bec.WindowsEventLog.cpp -------------------------------------------------------------------------------- /src/backends/bec.WindowsMessageBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/src/backends/bec.WindowsMessageBox.cpp -------------------------------------------------------------------------------- /src/backends/bec.WindowsSyslog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/src/backends/bec.WindowsSyslog.cpp -------------------------------------------------------------------------------- /src/backends/bec.fail.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/src/backends/bec.fail.c -------------------------------------------------------------------------------- /src/backends/bec.file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/src/backends/bec.file.cpp -------------------------------------------------------------------------------- /src/backends/bec.fprintf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/src/backends/bec.fprintf.cpp -------------------------------------------------------------------------------- /src/backends/bec.null.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/src/backends/bec.null.c -------------------------------------------------------------------------------- /src/backends/bec.speech.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/src/backends/bec.speech.cpp -------------------------------------------------------------------------------- /src/backends/bec.syslog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/src/backends/bec.syslog.c -------------------------------------------------------------------------------- /src/backends/bec.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/src/backends/bec.test.cpp -------------------------------------------------------------------------------- /src/backends/bel/bel.ACE.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/src/backends/bel/bel.ACE.c -------------------------------------------------------------------------------- /src/backends/bel/bel.COMErrorObject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/src/backends/bel/bel.COMErrorObject.c -------------------------------------------------------------------------------- /src/backends/bel/bel.WindowsConsole.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/src/backends/bel/bel.WindowsConsole.c -------------------------------------------------------------------------------- /src/backends/bel/bel.WindowsDebugger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/src/backends/bel/bel.WindowsDebugger.c -------------------------------------------------------------------------------- /src/backends/bel/bel.WindowsEventLog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/src/backends/bel/bel.WindowsEventLog.c -------------------------------------------------------------------------------- /src/backends/bel/bel.WindowsMessageBox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/src/backends/bel/bel.WindowsMessageBox.c -------------------------------------------------------------------------------- /src/backends/bel/bel.WindowsSyslog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/src/backends/bel/bel.WindowsSyslog.c -------------------------------------------------------------------------------- /src/backends/bel/bel.fail.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/src/backends/bel/bel.fail.c -------------------------------------------------------------------------------- /src/backends/bel/bel.file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/src/backends/bel/bel.file.c -------------------------------------------------------------------------------- /src/backends/bel/bel.fprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/src/backends/bel/bel.fprintf.c -------------------------------------------------------------------------------- /src/backends/bel/bel.null.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/src/backends/bel/bel.null.c -------------------------------------------------------------------------------- /src/backends/bel/bel.speech.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/src/backends/bel/bel.speech.c -------------------------------------------------------------------------------- /src/backends/bel/bel.syslog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/src/backends/bel/bel.syslog.c -------------------------------------------------------------------------------- /src/backends/bel/bel.test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/src/backends/bel/bel.test.c -------------------------------------------------------------------------------- /src/backends/ber/ber.ACE.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/src/backends/ber/ber.ACE.c -------------------------------------------------------------------------------- /src/backends/ber/ber.COMErrorObject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/src/backends/ber/ber.COMErrorObject.c -------------------------------------------------------------------------------- /src/backends/ber/ber.WindowsConsole.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/src/backends/ber/ber.WindowsConsole.c -------------------------------------------------------------------------------- /src/backends/ber/ber.WindowsDebugger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/src/backends/ber/ber.WindowsDebugger.c -------------------------------------------------------------------------------- /src/backends/ber/ber.WindowsEventLog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/src/backends/ber/ber.WindowsEventLog.c -------------------------------------------------------------------------------- /src/backends/ber/ber.WindowsMessageBox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/src/backends/ber/ber.WindowsMessageBox.c -------------------------------------------------------------------------------- /src/backends/ber/ber.WindowsSyslog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/src/backends/ber/ber.WindowsSyslog.c -------------------------------------------------------------------------------- /src/backends/ber/ber.fail.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/src/backends/ber/ber.fail.c -------------------------------------------------------------------------------- /src/backends/ber/ber.file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/src/backends/ber/ber.file.c -------------------------------------------------------------------------------- /src/backends/ber/ber.fprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/src/backends/ber/ber.fprintf.c -------------------------------------------------------------------------------- /src/backends/ber/ber.null.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/src/backends/ber/ber.null.c -------------------------------------------------------------------------------- /src/backends/ber/ber.speech.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/src/backends/ber/ber.speech.c -------------------------------------------------------------------------------- /src/backends/ber/ber.syslog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/src/backends/ber/ber.syslog.c -------------------------------------------------------------------------------- /src/backends/ber/ber.test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/src/backends/ber/ber.test.c -------------------------------------------------------------------------------- /src/core/api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/src/core/api.cpp -------------------------------------------------------------------------------- /src/core/api.deprecated.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/src/core/api.deprecated.c -------------------------------------------------------------------------------- /src/core/api.exitprocess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/src/core/api.exitprocess.cpp -------------------------------------------------------------------------------- /src/core/api.logputs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/src/core/api.logputs.cpp -------------------------------------------------------------------------------- /src/core/auto.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/src/core/auto.cpp -------------------------------------------------------------------------------- /src/core/logprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/src/core/logprintf.c -------------------------------------------------------------------------------- /src/frontends/fe.N.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/src/frontends/fe.N.c -------------------------------------------------------------------------------- /src/frontends/fe.WindowsRegistry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/src/frontends/fe.WindowsRegistry.cpp -------------------------------------------------------------------------------- /src/frontends/fe.all.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/src/frontends/fe.all.c -------------------------------------------------------------------------------- /src/frontends/fe.fail.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/src/frontends/fe.fail.c -------------------------------------------------------------------------------- /src/frontends/fe.null.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/src/frontends/fe.null.c -------------------------------------------------------------------------------- /src/frontends/fe.simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/src/frontends/fe.simple.c -------------------------------------------------------------------------------- /src/inserters/args.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/src/inserters/args.cpp -------------------------------------------------------------------------------- /src/inserters/b64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/src/inserters/b64.cpp -------------------------------------------------------------------------------- /src/inserters/blob.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/src/inserters/blob.cpp -------------------------------------------------------------------------------- /src/inserters/boolean.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/src/inserters/boolean.cpp -------------------------------------------------------------------------------- /src/inserters/exception.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/src/inserters/exception.cpp -------------------------------------------------------------------------------- /src/inserters/hostid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/src/inserters/hostid.cpp -------------------------------------------------------------------------------- /src/inserters/integer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/src/inserters/integer.cpp -------------------------------------------------------------------------------- /src/inserters/interval.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/src/inserters/interval.cpp -------------------------------------------------------------------------------- /src/inserters/m2w.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/src/inserters/m2w.cpp -------------------------------------------------------------------------------- /src/inserters/pointer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/src/inserters/pointer.cpp -------------------------------------------------------------------------------- /src/inserters/processid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/src/inserters/processid.cpp -------------------------------------------------------------------------------- /src/inserters/real.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/src/inserters/real.cpp -------------------------------------------------------------------------------- /src/inserters/slice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/src/inserters/slice.cpp -------------------------------------------------------------------------------- /src/inserters/stream_character.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/src/inserters/stream_character.cpp -------------------------------------------------------------------------------- /src/inserters/threadid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/src/inserters/threadid.cpp -------------------------------------------------------------------------------- /src/inserters/w2m.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/src/inserters/w2m.cpp -------------------------------------------------------------------------------- /src/readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/src/readme.html -------------------------------------------------------------------------------- /src/util/bailout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/src/util/bailout.c -------------------------------------------------------------------------------- /src/util/be.context.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/src/util/be.context.cpp -------------------------------------------------------------------------------- /src/util/be.parse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/src/util/be.parse.cpp -------------------------------------------------------------------------------- /src/util/core.apidefs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/src/util/core.apidefs.cpp -------------------------------------------------------------------------------- /src/util/date_elements_to_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/src/util/date_elements_to_string.c -------------------------------------------------------------------------------- /src/util/hostname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/src/util/hostname.c -------------------------------------------------------------------------------- /src/util/init_code_strings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/src/util/init_code_strings.c -------------------------------------------------------------------------------- /src/util/processid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/src/util/processid.c -------------------------------------------------------------------------------- /src/util/severity_strings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/src/util/severity_strings.c -------------------------------------------------------------------------------- /src/util/snprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/src/util/snprintf.c -------------------------------------------------------------------------------- /src/util/strdup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/src/util/strdup.c -------------------------------------------------------------------------------- /src/util/strnlen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/src/util/strnlen.cpp -------------------------------------------------------------------------------- /src/util/threadid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/src/util/threadid.c -------------------------------------------------------------------------------- /src/util/time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/src/util/time.cpp -------------------------------------------------------------------------------- /src/util/util.strnlen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/src/util/util.strnlen.c -------------------------------------------------------------------------------- /test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/CMakeLists.txt -------------------------------------------------------------------------------- /test/component/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/component/CMakeLists.txt -------------------------------------------------------------------------------- /test/component/pantheios.test.component.vc6.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/component/pantheios.test.component.vc6.dsw -------------------------------------------------------------------------------- /test/component/test.component.bec.fprintf/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/component/test.component.bec.fprintf/CMakeLists.txt -------------------------------------------------------------------------------- /test/component/test.component.bec.fprintf/implicit_link.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/component/test.component.bec.fprintf/implicit_link.cpp -------------------------------------------------------------------------------- /test/component/test.component.custom_severity/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/component/test.component.custom_severity/CMakeLists.txt -------------------------------------------------------------------------------- /test/component/test.component.details/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/component/test.component.details/CMakeLists.txt -------------------------------------------------------------------------------- /test/component/test.component.inserters.args/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/component/test.component.inserters.args/CMakeLists.txt -------------------------------------------------------------------------------- /test/component/test.component.inserters.b64/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/component/test.component.inserters.b64/CMakeLists.txt -------------------------------------------------------------------------------- /test/component/test.component.inserters.b64/implicit_link.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/component/test.component.inserters.b64/implicit_link.cpp -------------------------------------------------------------------------------- /test/component/test.component.inserters.hostid/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/component/test.component.inserters.hostid/CMakeLists.txt -------------------------------------------------------------------------------- /test/component/test.component.inserters.m2w/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/component/test.component.inserters.m2w/CMakeLists.txt -------------------------------------------------------------------------------- /test/component/test.component.inserters.m2w/implicit_link.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/component/test.component.inserters.m2w/implicit_link.cpp -------------------------------------------------------------------------------- /test/component/test.component.inserters.pad/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/component/test.component.inserters.pad/CMakeLists.txt -------------------------------------------------------------------------------- /test/component/test.component.inserters.pad/implicit_link.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/component/test.component.inserters.pad/implicit_link.cpp -------------------------------------------------------------------------------- /test/component/test.component.inserters.real/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/component/test.component.inserters.real/CMakeLists.txt -------------------------------------------------------------------------------- /test/component/test.component.inserters.slice/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/component/test.component.inserters.slice/CMakeLists.txt -------------------------------------------------------------------------------- /test/component/test.component.inserters.w2m/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/component/test.component.inserters.w2m/CMakeLists.txt -------------------------------------------------------------------------------- /test/component/test.component.inserters.w2m/implicit_link.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/component/test.component.inserters.w2m/implicit_link.cpp -------------------------------------------------------------------------------- /test/component/test.component.log.1/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/component/test.component.log.1/CMakeLists.txt -------------------------------------------------------------------------------- /test/component/test.component.log.1/implicit_link.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/component/test.component.log.1/implicit_link.cpp -------------------------------------------------------------------------------- /test/component/test.component.log.1/test.component.log.1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/component/test.component.log.1/test.component.log.1.cpp -------------------------------------------------------------------------------- /test/component/test.component.trace.1/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/component/test.component.trace.1/CMakeLists.txt -------------------------------------------------------------------------------- /test/component/test.component.trace.1/implicit_link.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/component/test.component.trace.1/implicit_link.cpp -------------------------------------------------------------------------------- /test/performance/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/performance/CMakeLists.txt -------------------------------------------------------------------------------- /test/performance/pantheios.test.performance.vc6.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/performance/pantheios.test.performance.vc6.dsw -------------------------------------------------------------------------------- /test/readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/readme.html -------------------------------------------------------------------------------- /test/scratch/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/scratch/CMakeLists.txt -------------------------------------------------------------------------------- /test/scratch/pantheios.test.scratch.vc6.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/scratch/pantheios.test.scratch.vc6.dsw -------------------------------------------------------------------------------- /test/scratch/test.scratch.I18N/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/scratch/test.scratch.I18N/CMakeLists.txt -------------------------------------------------------------------------------- /test/scratch/test.scratch.I18N/implicit_link.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/scratch/test.scratch.I18N/implicit_link.cpp -------------------------------------------------------------------------------- /test/scratch/test.scratch.I18N/test.scratch.I18N.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/scratch/test.scratch.I18N/test.scratch.I18N.cpp -------------------------------------------------------------------------------- /test/scratch/test.scratch.I18N/vc6/test.scratch.I18N.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/scratch/test.scratch.I18N/vc6/test.scratch.I18N.dsp -------------------------------------------------------------------------------- /test/scratch/test.scratch.WideString/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/scratch/test.scratch.WideString/CMakeLists.txt -------------------------------------------------------------------------------- /test/scratch/test.scratch.api/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/scratch/test.scratch.api/CMakeLists.txt -------------------------------------------------------------------------------- /test/scratch/test.scratch.api/implicit_link.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/scratch/test.scratch.api/implicit_link.cpp -------------------------------------------------------------------------------- /test/scratch/test.scratch.api/test.scratch.api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/scratch/test.scratch.api/test.scratch.api.cpp -------------------------------------------------------------------------------- /test/scratch/test.scratch.api/vc6/test.scratch.api.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/scratch/test.scratch.api/vc6/test.scratch.api.dsp -------------------------------------------------------------------------------- /test/scratch/test.scratch.be.ACE/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/scratch/test.scratch.be.ACE/implicit_link.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/scratch/test.scratch.be.ACE/implicit_link.cpp -------------------------------------------------------------------------------- /test/scratch/test.scratch.be.ACE/test.scratch.be.ACE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/scratch/test.scratch.be.ACE/test.scratch.be.ACE.cpp -------------------------------------------------------------------------------- /test/scratch/test.scratch.be.N.fail/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/scratch/test.scratch.be.N.fail/CMakeLists.txt -------------------------------------------------------------------------------- /test/scratch/test.scratch.be.N.fail/implicit_link.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/scratch/test.scratch.be.N.fail/implicit_link.cpp -------------------------------------------------------------------------------- /test/scratch/test.scratch.be.N.with.custom.fe/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/scratch/test.scratch.be.N.with.custom.fe/CMakeLists.txt -------------------------------------------------------------------------------- /test/scratch/test.scratch.be.N/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/scratch/test.scratch.be.N/CMakeLists.txt -------------------------------------------------------------------------------- /test/scratch/test.scratch.be.N/implicit_link.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/scratch/test.scratch.be.N/implicit_link.cpp -------------------------------------------------------------------------------- /test/scratch/test.scratch.be.N/test.scratch.be.N.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/scratch/test.scratch.be.N/test.scratch.be.N.cpp -------------------------------------------------------------------------------- /test/scratch/test.scratch.be.N/vc6/test.scratch.be.N.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/scratch/test.scratch.be.N/vc6/test.scratch.be.N.dsp -------------------------------------------------------------------------------- /test/scratch/test.scratch.be.WindowsSyslog.WithCallback/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/scratch/test.scratch.be.WindowsSyslog/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/scratch/test.scratch.be.WindowsSyslog/implicit_link.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/scratch/test.scratch.be.WindowsSyslog/implicit_link.cpp -------------------------------------------------------------------------------- /test/scratch/test.scratch.be.file.rolling/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/scratch/test.scratch.be.file.rolling/CMakeLists.txt -------------------------------------------------------------------------------- /test/scratch/test.scratch.be.file.rolling/implicit_link.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/scratch/test.scratch.be.file.rolling/implicit_link.cpp -------------------------------------------------------------------------------- /test/scratch/test.scratch.be.file/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/scratch/test.scratch.be.file/CMakeLists.txt -------------------------------------------------------------------------------- /test/scratch/test.scratch.be.file/implicit_link.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/scratch/test.scratch.be.file/implicit_link.cpp -------------------------------------------------------------------------------- /test/scratch/test.scratch.be.file/test.scratch.be.file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/scratch/test.scratch.be.file/test.scratch.be.file.cpp -------------------------------------------------------------------------------- /test/scratch/test.scratch.be.pantheios.COM/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/scratch/test.scratch.be.speech/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/scratch/test.scratch.be.speech/CMakeLists.txt -------------------------------------------------------------------------------- /test/scratch/test.scratch.be.speech/implicit_link.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/scratch/test.scratch.be.speech/implicit_link.cpp -------------------------------------------------------------------------------- /test/scratch/test.scratch.be.syslog/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/scratch/test.scratch.be.syslog/CMakeLists.txt -------------------------------------------------------------------------------- /test/scratch/test.scratch.be.syslog/implicit_link.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/scratch/test.scratch.be.syslog/implicit_link.cpp -------------------------------------------------------------------------------- /test/scratch/test.scratch.bec.WindowsConsoleCallback/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/scratch/test.scratch.bec.WindowsMessageBox/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/scratch/test.scratch.c_api/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/scratch/test.scratch.c_api/CMakeLists.txt -------------------------------------------------------------------------------- /test/scratch/test.scratch.c_api/implicit_link.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/scratch/test.scratch.c_api/implicit_link.cpp -------------------------------------------------------------------------------- /test/scratch/test.scratch.c_api/test.scratch.c_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/scratch/test.scratch.c_api/test.scratch.c_api.c -------------------------------------------------------------------------------- /test/scratch/test.scratch.c_api/vc6/test.scratch.c_api.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/scratch/test.scratch.c_api/vc6/test.scratch.c_api.dsp -------------------------------------------------------------------------------- /test/scratch/test.scratch.extras.com.invoke_nothrow_method/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/scratch/test.scratch.fe.WindowsRegistry.controller/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/scratch/test.scratch.fe.WindowsRegistry/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/scratch/test.scratch.fe/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/scratch/test.scratch.fe/CMakeLists.txt -------------------------------------------------------------------------------- /test/scratch/test.scratch.fe/test.scratch.fe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/scratch/test.scratch.fe/test.scratch.fe.cpp -------------------------------------------------------------------------------- /test/scratch/test.scratch.fe/vc6/test.scratch.fe.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/scratch/test.scratch.fe/vc6/test.scratch.fe.dsp -------------------------------------------------------------------------------- /test/scratch/test.scratch.implicit_link/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/scratch/test.scratch.implicit_link/CMakeLists.txt -------------------------------------------------------------------------------- /test/scratch/test.scratch.pseudoUNIX/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/scratch/test.scratch.showPlus.integer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/scratch/test.scratch.showPlus.integer/CMakeLists.txt -------------------------------------------------------------------------------- /test/scratch/test.scratch.showPlus.integer/implicit_link.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/scratch/test.scratch.showPlus.integer/implicit_link.cpp -------------------------------------------------------------------------------- /test/scratch/test.scratch.trace/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/scratch/test.scratch.trace/CMakeLists.txt -------------------------------------------------------------------------------- /test/scratch/test.scratch.trace/test.scratch.trace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/scratch/test.scratch.trace/test.scratch.trace.cpp -------------------------------------------------------------------------------- /test/scratch/test.scratch.trace/vc6/test.scratch.trace.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/scratch/test.scratch.trace/vc6/test.scratch.trace.dsp -------------------------------------------------------------------------------- /test/scratch/test.scratch.tstring/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/scratch/test.scratch.tstring/CMakeLists.txt -------------------------------------------------------------------------------- /test/scratch/test.scratch.tstring/implicit_link.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/scratch/test.scratch.tstring/implicit_link.cpp -------------------------------------------------------------------------------- /test/scratch/test.scratch.tstring/test.scratch.tstring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/scratch/test.scratch.tstring/test.scratch.tstring.cpp -------------------------------------------------------------------------------- /test/scratch/test.scratch.util.onbailout/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/scratch/test.scratch.util.onbailout/CMakeLists.txt -------------------------------------------------------------------------------- /test/scratch/test.scratch.util.onbailout/implicit_link.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/scratch/test.scratch.util.onbailout/implicit_link.cpp -------------------------------------------------------------------------------- /test/unit/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/unit/CMakeLists.txt -------------------------------------------------------------------------------- /test/unit/inserters/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/unit/inserters/CMakeLists.txt -------------------------------------------------------------------------------- /test/unit/inserters/test.unit.inserter.integer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/unit/inserters/test.unit.inserter.integer/CMakeLists.txt -------------------------------------------------------------------------------- /test/unit/inserters/test.unit.inserter.m2w/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/unit/inserters/test.unit.inserter.m2w/CMakeLists.txt -------------------------------------------------------------------------------- /test/unit/inserters/test.unit.inserter.m2w/implicit_link.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/unit/inserters/test.unit.inserter.m2w/implicit_link.cpp -------------------------------------------------------------------------------- /test/unit/inserters/test.unit.inserter.w2m/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/unit/inserters/test.unit.inserter.w2m/CMakeLists.txt -------------------------------------------------------------------------------- /test/unit/inserters/test.unit.inserter.w2m/implicit_link.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/unit/inserters/test.unit.inserter.w2m/implicit_link.cpp -------------------------------------------------------------------------------- /test/unit/pantheios.test.unit.vc6.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/unit/pantheios.test.unit.vc6.dsw -------------------------------------------------------------------------------- /test/unit/test.unit.be.N.filtering/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/unit/test.unit.be.N.filtering/CMakeLists.txt -------------------------------------------------------------------------------- /test/unit/test.unit.be.N.filtering/implicit_link.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/unit/test.unit.be.N.filtering/implicit_link.cpp -------------------------------------------------------------------------------- /test/unit/test.unit.be.N.filtering/test.unit.be.N.filtering.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/unit/test.unit.be.N.filtering/test.unit.be.N.filtering.c -------------------------------------------------------------------------------- /test/unit/test.unit.be.N/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/unit/test.unit.be.N/CMakeLists.txt -------------------------------------------------------------------------------- /test/unit/test.unit.be.N/implicit_link.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/unit/test.unit.be.N/implicit_link.cpp -------------------------------------------------------------------------------- /test/unit/test.unit.be.N/test.unit.be.N.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/unit/test.unit.be.N/test.unit.be.N.c -------------------------------------------------------------------------------- /test/unit/test.unit.be.N/vc6/test.unit.be.N.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/unit/test.unit.be.N/vc6/test.unit.be.N.dsp -------------------------------------------------------------------------------- /test/unit/test.unit.be.WindowsSyslog/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/unit/test.unit.be.WindowsSyslog/CMakeLists.txt -------------------------------------------------------------------------------- /test/unit/test.unit.be.WindowsSyslog/implicit_link.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/unit/test.unit.be.WindowsSyslog/implicit_link.cpp -------------------------------------------------------------------------------- /test/unit/test.unit.be.fail/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/unit/test.unit.be.fail/CMakeLists.txt -------------------------------------------------------------------------------- /test/unit/test.unit.be.fail/implicit_link.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/unit/test.unit.be.fail/implicit_link.cpp -------------------------------------------------------------------------------- /test/unit/test.unit.be.fail/test.unit.be.fail.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/unit/test.unit.be.fail/test.unit.be.fail.c -------------------------------------------------------------------------------- /test/unit/test.unit.be.fail/vc6/test.unit.be.fail.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/unit/test.unit.be.fail/vc6/test.unit.be.fail.dsp -------------------------------------------------------------------------------- /test/unit/test.unit.be.lrsplit/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/unit/test.unit.be.lrsplit/CMakeLists.txt -------------------------------------------------------------------------------- /test/unit/test.unit.be.lrsplit/implicit_link.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/unit/test.unit.be.lrsplit/implicit_link.cpp -------------------------------------------------------------------------------- /test/unit/test.unit.be.lrsplit/test.unit.be.lrsplit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/unit/test.unit.be.lrsplit/test.unit.be.lrsplit.c -------------------------------------------------------------------------------- /test/unit/test.unit.be.lrsplit/vc6/test.unit.be.lrsplit.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/unit/test.unit.be.lrsplit/vc6/test.unit.be.lrsplit.dsp -------------------------------------------------------------------------------- /test/unit/test.unit.bec.COMErrorObject/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/unit/test.unit.bec.COMErrorObject/CMakeLists.txt -------------------------------------------------------------------------------- /test/unit/test.unit.bec.COMErrorObject/implicit_link.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/unit/test.unit.bec.COMErrorObject/implicit_link.cpp -------------------------------------------------------------------------------- /test/unit/test.unit.bec.fail/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/unit/test.unit.bec.fail/CMakeLists.txt -------------------------------------------------------------------------------- /test/unit/test.unit.bec.fail/implicit_link.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/unit/test.unit.bec.fail/implicit_link.cpp -------------------------------------------------------------------------------- /test/unit/test.unit.bec.fail/test.unit.bec.fail.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/unit/test.unit.bec.fail/test.unit.bec.fail.c -------------------------------------------------------------------------------- /test/unit/test.unit.bec.fail/vc6/test.unit.bec.fail.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/unit/test.unit.bec.fail/vc6/test.unit.bec.fail.dsp -------------------------------------------------------------------------------- /test/unit/test.unit.bec.file/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/unit/test.unit.bec.file/CMakeLists.txt -------------------------------------------------------------------------------- /test/unit/test.unit.bec.file/implicit_link.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/unit/test.unit.bec.file/implicit_link.cpp -------------------------------------------------------------------------------- /test/unit/test.unit.bec.file/test.unit.bec.file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/unit/test.unit.bec.file/test.unit.bec.file.cpp -------------------------------------------------------------------------------- /test/unit/test.unit.bec.file/vc6/test.unit.bec.file.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/unit/test.unit.bec.file/vc6/test.unit.bec.file.dsp -------------------------------------------------------------------------------- /test/unit/test.unit.bec.fprintf/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/unit/test.unit.bec.fprintf/CMakeLists.txt -------------------------------------------------------------------------------- /test/unit/test.unit.bec.fprintf/implicit_link.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/unit/test.unit.bec.fprintf/implicit_link.cpp -------------------------------------------------------------------------------- /test/unit/test.unit.bec.fprintf/test.unit.bec.fprintf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/unit/test.unit.bec.fprintf/test.unit.bec.fprintf.cpp -------------------------------------------------------------------------------- /test/unit/test.unit.bec.fprintf/vc6/test.unit.bec.fprintf.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/unit/test.unit.bec.fprintf/vc6/test.unit.bec.fprintf.dsp -------------------------------------------------------------------------------- /test/unit/test.unit.fe.N/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/unit/test.unit.fe.N/CMakeLists.txt -------------------------------------------------------------------------------- /test/unit/test.unit.fe.N/implicit_link.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/unit/test.unit.fe.N/implicit_link.cpp -------------------------------------------------------------------------------- /test/unit/test.unit.fe.N/test.unit.fe.N.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/unit/test.unit.fe.N/test.unit.fe.N.c -------------------------------------------------------------------------------- /test/unit/test.unit.fe.N/vc6/test.unit.fe.N.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/unit/test.unit.fe.N/vc6/test.unit.fe.N.dsp -------------------------------------------------------------------------------- /test/unit/test.unit.fe.WindowsRegistry/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/unit/test.unit.fe.WindowsRegistry/CMakeLists.txt -------------------------------------------------------------------------------- /test/unit/test.unit.fe.WindowsRegistry/implicit_link.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/unit/test.unit.fe.WindowsRegistry/implicit_link.cpp -------------------------------------------------------------------------------- /test/unit/test.unit.fe.all/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/unit/test.unit.fe.all/CMakeLists.txt -------------------------------------------------------------------------------- /test/unit/test.unit.fe.all/implicit_link.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/unit/test.unit.fe.all/implicit_link.cpp -------------------------------------------------------------------------------- /test/unit/test.unit.fe.all/test.unit.fe.all.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/unit/test.unit.fe.all/test.unit.fe.all.c -------------------------------------------------------------------------------- /test/unit/test.unit.fe.all/vc6/test.unit.fe.all.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/unit/test.unit.fe.all/vc6/test.unit.fe.all.dsp -------------------------------------------------------------------------------- /test/unit/test.unit.fe.fail/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/unit/test.unit.fe.fail/CMakeLists.txt -------------------------------------------------------------------------------- /test/unit/test.unit.fe.fail/implicit_link.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/unit/test.unit.fe.fail/implicit_link.cpp -------------------------------------------------------------------------------- /test/unit/test.unit.fe.fail/test.unit.fe.fail.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/unit/test.unit.fe.fail/test.unit.fe.fail.c -------------------------------------------------------------------------------- /test/unit/test.unit.fe.fail/vc6/test.unit.fe.fail.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/unit/test.unit.fe.fail/vc6/test.unit.fe.fail.dsp -------------------------------------------------------------------------------- /test/unit/test.unit.fe.null/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/unit/test.unit.fe.null/CMakeLists.txt -------------------------------------------------------------------------------- /test/unit/test.unit.fe.null/implicit_link.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/unit/test.unit.fe.null/implicit_link.cpp -------------------------------------------------------------------------------- /test/unit/test.unit.fe.null/test.unit.fe.null.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/unit/test.unit.fe.null/test.unit.fe.null.c -------------------------------------------------------------------------------- /test/unit/test.unit.fe.null/vc6/test.unit.fe.null.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/unit/test.unit.fe.null/vc6/test.unit.fe.null.dsp -------------------------------------------------------------------------------- /test/unit/test.unit.fe.simple/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/unit/test.unit.fe.simple/CMakeLists.txt -------------------------------------------------------------------------------- /test/unit/test.unit.fe.simple/implicit_link.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/unit/test.unit.fe.simple/implicit_link.cpp -------------------------------------------------------------------------------- /test/unit/test.unit.fe.simple/test.unit.fe.simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/unit/test.unit.fe.simple/test.unit.fe.simple.c -------------------------------------------------------------------------------- /test/unit/test.unit.fe.simple/vc6/test.unit.fe.simple.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/unit/test.unit.fe.simple/vc6/test.unit.fe.simple.dsp -------------------------------------------------------------------------------- /test/unit/test.unit.getversion/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/unit/test.unit.getversion/CMakeLists.txt -------------------------------------------------------------------------------- /test/unit/test.unit.getversion/implicit_link.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/unit/test.unit.getversion/implicit_link.cpp -------------------------------------------------------------------------------- /test/unit/test.unit.getversion/test.unit.getversion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/unit/test.unit.getversion/test.unit.getversion.c -------------------------------------------------------------------------------- /test/unit/test.unit.getversion/vc6/test.unit.getversion.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/unit/test.unit.getversion/vc6/test.unit.getversion.dsp -------------------------------------------------------------------------------- /test/unit/test.unit.inserters.windows.sc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/unit/test.unit.inserters.windows.sc/CMakeLists.txt -------------------------------------------------------------------------------- /test/unit/test.unit.inserters.windows.sc/implicit_link.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/unit/test.unit.inserters.windows.sc/implicit_link.cpp -------------------------------------------------------------------------------- /test/unit/test.unit.levels.2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/unit/test.unit.levels.2/CMakeLists.txt -------------------------------------------------------------------------------- /test/unit/test.unit.levels.2/vc6/test.unit.levels.2.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/unit/test.unit.levels.2/vc6/test.unit.levels.2.dsp -------------------------------------------------------------------------------- /test/unit/test.unit.levels.values/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/unit/test.unit.levels.values/CMakeLists.txt -------------------------------------------------------------------------------- /test/unit/test.unit.levels.values/implicit_link.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/unit/test.unit.levels.values/implicit_link.cpp -------------------------------------------------------------------------------- /test/unit/test.unit.util.getcurrenttime/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/unit/test.unit.util.getcurrenttime/CMakeLists.txt -------------------------------------------------------------------------------- /test/unit/test.unit.util.getcurrenttime/implicit_link.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/unit/test.unit.util.getcurrenttime/implicit_link.cpp -------------------------------------------------------------------------------- /test/unit/test.unit.util.gethostname/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/unit/test.unit.util.gethostname/CMakeLists.txt -------------------------------------------------------------------------------- /test/unit/test.unit.util.gethostname/implicit_link.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/unit/test.unit.util.gethostname/implicit_link.cpp -------------------------------------------------------------------------------- /test/unit/test.unit.util.onbailout/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/unit/test.unit.util.onbailout/CMakeLists.txt -------------------------------------------------------------------------------- /test/unit/test.unit.util.onbailout/implicit_link.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/unit/test.unit.util.onbailout/implicit_link.cpp -------------------------------------------------------------------------------- /test/unit/test.unit.util.snprintf/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/unit/test.unit.util.snprintf/CMakeLists.txt -------------------------------------------------------------------------------- /test/unit/test.unit.util.snprintf/implicit_link.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/unit/test.unit.util.snprintf/implicit_link.cpp -------------------------------------------------------------------------------- /test/unit/test.unit.util.strnlen/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/unit/test.unit.util.strnlen/CMakeLists.txt -------------------------------------------------------------------------------- /test/unit/test.unit.util.strnlen/implicit_link.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synesissoftware/Pantheios/HEAD/test/unit/test.unit.util.strnlen/implicit_link.cpp --------------------------------------------------------------------------------