Demonstrates the the use of opcContainerOpenMem, i.e. how to use "in-memory" containers.
#include <stdio.h>
#include <time.h>
#ifdef WIN32
#include <crtdbg.h>
#endif
int main( int argc, const char* argv[] )
{
#ifdef WIN32
_CrtSetDbgFlag (_CRTDBG_ALLOC_MEM_DF | _CRTDBG_LEAK_CHECK_DF);
#endif
time_t start_time=time(NULL);
FILE *f=fopen(argv[1], "rb");
fseek(f, 0, SEEK_END);
fseek(f, 0, SEEK_SET);
size_t fread_len=fread(data, 1, data_len, f);
fclose(f);
if (data_len!=fread_len) {
printf("ERROR: reading file.\n");
} else {
printf("ERROR: \"%s\" could not be opened.\n", argv[1]);
err=OPC_ERROR_STREAM;
}
xmlFree(data);
} else if (2==argc) {
printf("ERROR: initialization of libopc failed.\n");
err=OPC_ERROR_STREAM;
} else {
printf("opc_dump FILENAME.\n\n");
printf("Sample: opc_dump test.docx\n");
}
time_t end_time=time(NULL);
fprintf(stderr, "time %.2lfsec\n", difftime(end_time, start_time));
#ifdef WIN32
#endif
return (OPC_ERROR_NONE==err?0:3);
}