Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Main
Synchronet
Compare Revisions
1a4345654513c363b41a316116e90fcee7fbe622...e95e145f23484498c084cb34d4a251731a52cb5d
Commits (1)
Restore the msclock_t typedef. Things were using it.
· e95e145f
Rob Swindell
authored
Feb 11, 2022
e95e145f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
src/xpdev/genwrap.h
src/xpdev/genwrap.h
+2
-1
No files found.
src/xpdev/genwrap.h
View file @
e95e145f
...
...
@@ -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
);
/* Microsoft (e.g. DOS/Win32) real-time system clock API (ticks since process started) */
typedef
clock_t
msclock_t
;
#define MSCLOCKS_PER_SEC 1000
clock_t
msclock
(
void
);
ms
clock_t
msclock
(
void
);
DLLEXPORT
BOOL
check_pid
(
pid_t
);
DLLEXPORT
BOOL
terminate_pid
(
pid_t
);
...
...