Create object in object.rs

This commit is contained in:
2020-07-02 02:44:01 +07:00
parent 4e67e10aee
commit b1c3107c74
4 changed files with 302 additions and 298 deletions

7
other/to_epoch.py Normal file
View File

@ -0,0 +1,7 @@
windows_epoch_diff = 11644473600000 * 10000
filetime = 132380977838542980
process_time_epoch = (filetime - windows_epoch_diff) // 10000
print(process_time_epoch)