client_proper.c 205 B

123456789101112
  1. #ifdef NOT_AMALGATED
  2. #include "ua_types.h"
  3. #include "ua_client.h"
  4. #else
  5. #include "open62541.h"
  6. #endif
  7. int main(int argc, char *argv[]) {
  8. UA_Client *client = UA_Client_new();
  9. free(client);
  10. }