Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2005-06-18 05:36:18 +0400
committerChristopher Faylor <me@cgf.cx>2005-06-18 05:36:18 +0400
commit91717fb80617f29725226c723a3c0c48d7126138 (patch)
tree9df5ef61e38aacd99ed01f98d9167bcc1e7698a9 /winsup/cygwin/wincap.h
parent2bc6be1edace6a5465a920510a69dc459f70e5dd (diff)
* wincap.h (wincaps::detect_win16_exe): Declare.
(wincapc::detect_win16_exe): Implement. * wincap.cc: Populate detect_win16_exe where appropriate. * spawn.cc (spawn_guts): Only go out of the way to detect 16-bit apps on systems which are flummoxed by them.
Diffstat (limited to 'winsup/cygwin/wincap.h')
-rw-r--r--winsup/cygwin/wincap.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/winsup/cygwin/wincap.h b/winsup/cygwin/wincap.h
index 6d7d63ec9..abb801da2 100644
--- a/winsup/cygwin/wincap.h
+++ b/winsup/cygwin/wincap.h
@@ -59,6 +59,7 @@ struct wincaps
unsigned start_proc_suspended : 1;
unsigned has_extended_priority_class : 1;
unsigned has_guid_volumes : 1;
+ unsigned detect_win16_exe : 1;
};
class wincapc
@@ -122,6 +123,7 @@ public:
bool IMPLEMENT (start_proc_suspended)
bool IMPLEMENT (has_extended_priority_class)
bool IMPLEMENT (has_guid_volumes)
+ bool IMPLEMENT (detect_win16_exe)
#undef IMPLEMENT
};