aboutsummaryrefslogtreecommitdiff
path: root/win32/mingw.c
diff options
context:
space:
mode:
Diffstat (limited to 'win32/mingw.c')
-rw-r--r--win32/mingw.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/win32/mingw.c b/win32/mingw.c
index dabb2a2e7..fec6df73a 100644
--- a/win32/mingw.c
+++ b/win32/mingw.c
@@ -2219,20 +2219,6 @@ int enumerate_links(const char *file, char *name)
2219} 2219}
2220#endif 2220#endif
2221 2221
2222#if ENABLE_ASH_NOCONSOLE
2223void hide_console(int hide)
2224{
2225 DECLARE_PROC_ADDR(BOOL, ShowWindow, HWND, int);
2226 DECLARE_PROC_ADDR(BOOL, IsIconic, HWND);
2227
2228 if (INIT_PROC_ADDR(user32.dll, ShowWindow) &&
2229 INIT_PROC_ADDR(user32.dll, IsIconic)) {
2230 if (IsIconic(GetConsoleWindow()) == !hide)
2231 ShowWindow(GetConsoleWindow(), hide ? SW_MINIMIZE : SW_NORMAL);
2232 }
2233}
2234#endif
2235
2236/* Return the length of the root of a UNC path, i.e. the '//host/share' 2222/* Return the length of the root of a UNC path, i.e. the '//host/share'
2237 * component, or 0 if the path doesn't look like that. */ 2223 * component, or 0 if the path doesn't look like that. */
2238int unc_root_len(const char *dir) 2224int unc_root_len(const char *dir)