-
Notifications
You must be signed in to change notification settings - Fork 2
POD File Format Derivates
Jon Daniel edited this page Sep 18, 2024
·
82 revisions
All information here is to my best knowledge, is is not proven by any official reference manual by Terminal Reality.
POD files are simple container files housing other files like textures or models. File extension is pod.
There are various versions of the POD files. There are not compatible with each other. Each version can be identified by the first 4 bytes of the file.
- file starts with POD6 see POD6
- file starts with POD5 see POD5
- file starts with POD4 see POD4
- file starts with POD3 see POD3
- file starts with POD2 see POD2
- file starts with dxte see EPD
- else see POD1
pod_string_t pod_ctime(pod_time_t* time32)
{
struct tm tm;
errno_t ret = _localtime32_s(&tm, time32);
if(ret != 0)
{
fprintf(stderr, "%s\n", strerror(ret));
return 0;
}
__time64_t time64 = _mktime64(&tm);
pod_string_t str = _ctime64(&time64);
str[strcspn ( str, "\n" )] = '\0';
return str;
}All information here is to my best knowledge, is is not proven by any official reference manual by Microsoft or Terminal Reality.