Iterate through object and resource definitions and print them to stdout
#include <stdlib.h>
#include <stdio.h>
#define IPC_PORT (12345)
#define IPC_ADDRESS "127.0.0.1"
#define OPERATION_PERFORM_TIMEOUT 1000
int main(void)
{
{
printf("Object ID:%d name:%s minInstances:%d maxInstances:%d\n",
{
printf(" Resource: ID:%d name:%s type:%d minInstances:%d maxInstances:%d operations:%d\n",
}
}
return 0;
}