diff options
author | Ron Yorston <rmy@pobox.com> | 2019-02-17 13:59:17 +0000 |
---|---|---|
committer | Ron Yorston <rmy@pobox.com> | 2019-02-17 13:59:17 +0000 |
commit | 743580b4c029e200b1390075a1328ab314973bc2 (patch) | |
tree | ee967e8fe9f8c2016d50fddbe2b8837b6fa7aa79 /include/mingw.h | |
parent | 5d710374afe4545d8e14c0559857b50ceceb1df3 (diff) | |
download | busybox-w32-743580b4c029e200b1390075a1328ab314973bc2.tar.gz busybox-w32-743580b4c029e200b1390075a1328ab314973bc2.tar.bz2 busybox-w32-743580b4c029e200b1390075a1328ab314973bc2.zip |
ash: updated support for hiding console
Move the code to hide the console to a separate function in
win32/mingw.c. Use lazy loading to avoid problems on platforms
where the require APIs aren't supported (PR #70).
Enable console hiding in the default 64-bit configuration.
Diffstat (limited to 'include/mingw.h')
-rw-r--r-- | include/mingw.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/mingw.h b/include/mingw.h index 0f403b993..f8e833138 100644 --- a/include/mingw.h +++ b/include/mingw.h | |||
@@ -513,3 +513,4 @@ ULONGLONG CompatGetTickCount64(void); | |||
513 | 513 | ||
514 | ssize_t get_random_bytes(void *buf, ssize_t count); | 514 | ssize_t get_random_bytes(void *buf, ssize_t count); |
515 | int enumerate_links(const char *file, char *name); | 515 | int enumerate_links(const char *file, char *name); |
516 | void hide_console(void); | ||