12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- #include <opc/opc.h>
- #include <libxml/xmlreader.h>
- opc_error_t opcInitLibrary() {
- xmlInitParser();
- return OPC_ERROR_NONE;
- }
- opc_error_t opcFreeLibrary() {
- xmlCleanupParser();
- return OPC_ERROR_NONE;
- }
|