Skip to content
Snippets Groups Projects
Commit e95e145f authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Restore the msclock_t typedef. Things were using it.

parent 1a434565
No related branches found
No related tags found
1 merge request!463MRC mods by Codefenix (2024-10-20)
Pipeline #2714 failed
...@@ -378,8 +378,9 @@ DLLEXPORT char* byte_count_to_str(int64_t bytes, char* str, size_t size); ...@@ -378,8 +378,9 @@ DLLEXPORT char* byte_count_to_str(int64_t bytes, char* str, size_t size);
DLLEXPORT char* byte_estimate_to_str(int64_t bytes, char* str, size_t size, ulong unit, int precision); DLLEXPORT char* byte_estimate_to_str(int64_t bytes, char* str, size_t size, ulong unit, int precision);
/* Microsoft (e.g. DOS/Win32) real-time system clock API (ticks since process started) */ /* Microsoft (e.g. DOS/Win32) real-time system clock API (ticks since process started) */
typedef clock_t msclock_t;
#define MSCLOCKS_PER_SEC 1000 #define MSCLOCKS_PER_SEC 1000
clock_t msclock(void); msclock_t msclock(void);
DLLEXPORT BOOL check_pid(pid_t); DLLEXPORT BOOL check_pid(pid_t);
DLLEXPORT BOOL terminate_pid(pid_t); DLLEXPORT BOOL terminate_pid(pid_t);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment