#include <stdio.h>
#include <inttypes.h>
 
#if _WIN32 || _WIN64
#include <windows.h>
static void sleep_ms(int time) {
    Sleep(time);
}
#else
#include <unistd.h>
static void sleep_ms(int time) {
    usleep(time * 1000);
}
#endif
 
 
        void* user_data){
        (void)(user_data);  
        printf(
"Device time stamp: %" PRId64 
"\n", time_synchronization_data->
device_time_stamp);
}
 
 
 
    char* serial_number = NULL;
 
    printf("Subscribing to time synchronization data for eye tracker with serial number %s.\n", serial_number);
 
 
 
    
    sleep_ms(2000);
 
    printf("Unsubscribed from time synchronization data.\n");
}