opcua_time.c 369 B

1234567891011121314151617181920212223
  1. /*
  2. * opcua_time.c
  3. *
  4. * Created on: Feb 5, 2014
  5. * Author: opcua
  6. */
  7. #include "opcua_builtInDatatypes.h"
  8. #include "opcua_advancedDatatypes.h"
  9. #include <time.h>
  10. #include <assert.h>
  11. #include <errno.h>
  12. #include <stdarg.h>
  13. //get the current Server Time
  14. UA_DateTime opcua_getTime()
  15. {
  16. //TODO call System Time function
  17. UA_DateTime time = 10000000;
  18. return time;
  19. }