* Makefile.in: Build wincap.o.
* wincap.cc: New file.
* wincap.h: Ditto.
* autoload.cc: Add dynamic load statement for `CreateHardLinkA'.
* dcrt0.cc (os_being_run): Eliminated.
(osname): Ditto.
(iswinnt): Ditto.
(set_os_type): Ditto.
(dll_crt0_1): Call wincap.init() instead of set_os_type().
(_dll_crt0): Ditto.
* environ.cc (set_chunksize): New function.
(parse_thing): `forkchunk' setting now invokes function `set_chunksize'.
* fork.cc (chunksize): Eliminated. Moved to be member of wincap.
* host_dependent.h: Removed.
* syscalls.cc (_link): Try using `CreateHardLinkA' first, if available.
* cygheap.cc, dcrt0.cc, delqueue.cc, dir.cc,
environ.cc, fhandler.cc, fhandler.h, fhandler_console.cc,
fhandler_mem.cc, fork.cc, mmap.cc, net.cc, pinfo.cc, pinfo.h,
security.cc, syscalls.cc, sysconf.cc, syslog.cc, thread.cc,
times.cc, tty.cc, uinfo.cc, uname.cc, winsup.h: Use new wincap
capability check throughout.
* winsup.h: Include wincap.h. Eliminate extern declarations of
`os_being_run' and `iswinnt'. Eliminate `os_type" definition.
* include/cygwin/version.h: Bump version to 1.3.4.
2001-09-12 17:46:37 +00:00
|
|
|
/* wincap.h: Header for OS capability class.
|
|
|
|
|
2007-01-17 19:26:58 +00:00
|
|
|
Copyright 2001, 2002, 2003, 2004, 2005, 2006, 2007 Red Hat, Inc.
|
* Makefile.in: Build wincap.o.
* wincap.cc: New file.
* wincap.h: Ditto.
* autoload.cc: Add dynamic load statement for `CreateHardLinkA'.
* dcrt0.cc (os_being_run): Eliminated.
(osname): Ditto.
(iswinnt): Ditto.
(set_os_type): Ditto.
(dll_crt0_1): Call wincap.init() instead of set_os_type().
(_dll_crt0): Ditto.
* environ.cc (set_chunksize): New function.
(parse_thing): `forkchunk' setting now invokes function `set_chunksize'.
* fork.cc (chunksize): Eliminated. Moved to be member of wincap.
* host_dependent.h: Removed.
* syscalls.cc (_link): Try using `CreateHardLinkA' first, if available.
* cygheap.cc, dcrt0.cc, delqueue.cc, dir.cc,
environ.cc, fhandler.cc, fhandler.h, fhandler_console.cc,
fhandler_mem.cc, fork.cc, mmap.cc, net.cc, pinfo.cc, pinfo.h,
security.cc, syscalls.cc, sysconf.cc, syslog.cc, thread.cc,
times.cc, tty.cc, uinfo.cc, uname.cc, winsup.h: Use new wincap
capability check throughout.
* winsup.h: Include wincap.h. Eliminate extern declarations of
`os_being_run' and `iswinnt'. Eliminate `os_type" definition.
* include/cygwin/version.h: Bump version to 1.3.4.
2001-09-12 17:46:37 +00:00
|
|
|
|
|
|
|
This file is part of Cygwin.
|
|
|
|
|
|
|
|
This software is a copyrighted work licensed under the terms of the
|
|
|
|
Cygwin license. Please consult the file "CYGWIN_LICENSE" for
|
|
|
|
details. */
|
|
|
|
|
|
|
|
#ifndef _WINCAP_H
|
|
|
|
#define _WINCAP_H
|
|
|
|
|
|
|
|
struct wincaps
|
2001-11-05 06:09:15 +00:00
|
|
|
{
|
* Makefile.in: Build wincap.o.
* wincap.cc: New file.
* wincap.h: Ditto.
* autoload.cc: Add dynamic load statement for `CreateHardLinkA'.
* dcrt0.cc (os_being_run): Eliminated.
(osname): Ditto.
(iswinnt): Ditto.
(set_os_type): Ditto.
(dll_crt0_1): Call wincap.init() instead of set_os_type().
(_dll_crt0): Ditto.
* environ.cc (set_chunksize): New function.
(parse_thing): `forkchunk' setting now invokes function `set_chunksize'.
* fork.cc (chunksize): Eliminated. Moved to be member of wincap.
* host_dependent.h: Removed.
* syscalls.cc (_link): Try using `CreateHardLinkA' first, if available.
* cygheap.cc, dcrt0.cc, delqueue.cc, dir.cc,
environ.cc, fhandler.cc, fhandler.h, fhandler_console.cc,
fhandler_mem.cc, fork.cc, mmap.cc, net.cc, pinfo.cc, pinfo.h,
security.cc, syscalls.cc, sysconf.cc, syslog.cc, thread.cc,
times.cc, tty.cc, uinfo.cc, uname.cc, winsup.h: Use new wincap
capability check throughout.
* winsup.h: Include wincap.h. Eliminate extern declarations of
`os_being_run' and `iswinnt'. Eliminate `os_type" definition.
* include/cygwin/version.h: Bump version to 1.3.4.
2001-09-12 17:46:37 +00:00
|
|
|
DWORD lock_file_highword;
|
|
|
|
DWORD chunksize;
|
2006-10-31 18:41:16 +00:00
|
|
|
DWORD heapslop;
|
2003-09-27 03:44:31 +00:00
|
|
|
unsigned is_server : 1;
|
* Makefile.in: Build wincap.o.
* wincap.cc: New file.
* wincap.h: Ditto.
* autoload.cc: Add dynamic load statement for `CreateHardLinkA'.
* dcrt0.cc (os_being_run): Eliminated.
(osname): Ditto.
(iswinnt): Ditto.
(set_os_type): Ditto.
(dll_crt0_1): Call wincap.init() instead of set_os_type().
(_dll_crt0): Ditto.
* environ.cc (set_chunksize): New function.
(parse_thing): `forkchunk' setting now invokes function `set_chunksize'.
* fork.cc (chunksize): Eliminated. Moved to be member of wincap.
* host_dependent.h: Removed.
* syscalls.cc (_link): Try using `CreateHardLinkA' first, if available.
* cygheap.cc, dcrt0.cc, delqueue.cc, dir.cc,
environ.cc, fhandler.cc, fhandler.h, fhandler_console.cc,
fhandler_mem.cc, fork.cc, mmap.cc, net.cc, pinfo.cc, pinfo.h,
security.cc, syscalls.cc, sysconf.cc, syslog.cc, thread.cc,
times.cc, tty.cc, uinfo.cc, uname.cc, winsup.h: Use new wincap
capability check throughout.
* winsup.h: Include wincap.h. Eliminate extern declarations of
`os_being_run' and `iswinnt'. Eliminate `os_type" definition.
* include/cygwin/version.h: Bump version to 1.3.4.
2001-09-12 17:46:37 +00:00
|
|
|
unsigned has_security : 1;
|
|
|
|
unsigned has_security_descriptor_control : 1;
|
|
|
|
unsigned has_ip_helper_lib : 1;
|
|
|
|
unsigned has_physical_mem_access : 1;
|
|
|
|
unsigned has_move_file_ex : 1;
|
|
|
|
unsigned has_unreliable_pipes : 1;
|
2001-10-16 14:53:26 +00:00
|
|
|
unsigned has_raw_devices : 1;
|
2001-10-15 09:41:18 +00:00
|
|
|
unsigned has_valid_processorlevel : 1;
|
2002-02-25 17:47:51 +00:00
|
|
|
unsigned has_64bit_file_access : 1;
|
2002-05-12 01:37:48 +00:00
|
|
|
unsigned has_process_io_counters : 1;
|
2002-07-24 11:01:37 +00:00
|
|
|
unsigned supports_reading_modem_output_lines : 1;
|
2002-10-15 17:04:20 +00:00
|
|
|
unsigned needs_memory_protection : 1;
|
2003-04-20 01:36:15 +00:00
|
|
|
unsigned pty_needs_alloc_console : 1;
|
2003-05-20 15:22:09 +00:00
|
|
|
unsigned has_terminal_services : 1;
|
2003-08-28 02:04:16 +00:00
|
|
|
unsigned has_switch_to_thread : 1;
|
2004-03-14 18:01:45 +00:00
|
|
|
unsigned has_ioctl_storage_get_media_types_ex : 1;
|
2004-12-28 01:27:26 +00:00
|
|
|
unsigned start_proc_suspended : 1;
|
2005-01-25 22:45:11 +00:00
|
|
|
unsigned has_extended_priority_class : 1;
|
2005-04-11 21:54:54 +00:00
|
|
|
unsigned has_guid_volumes : 1;
|
2005-06-30 02:52:14 +00:00
|
|
|
unsigned has_null_console_handler_routine : 1;
|
2005-09-28 19:33:18 +00:00
|
|
|
unsigned has_disk_ex_ioctls : 1;
|
2006-01-13 10:18:31 +00:00
|
|
|
unsigned has_disabled_user_tos_setting : 1;
|
2006-01-27 21:50:42 +00:00
|
|
|
unsigned has_fileid_dirinfo : 1;
|
2006-01-29 12:23:44 +00:00
|
|
|
unsigned has_exclusiveaddruse : 1;
|
2006-10-23 15:13:55 +00:00
|
|
|
unsigned has_buggy_restart_scan : 1;
|
2006-11-08 11:38:05 +00:00
|
|
|
unsigned has_mandatory_integrity_control : 1;
|
2006-11-27 12:59:59 +00:00
|
|
|
unsigned needs_logon_sid_in_sid_list : 1;
|
2006-12-05 10:59:21 +00:00
|
|
|
unsigned needs_count_in_si_lpres2 : 1;
|
2006-12-10 16:43:30 +00:00
|
|
|
unsigned has_recycle_dot_bin : 1;
|
2007-01-17 19:26:58 +00:00
|
|
|
unsigned has_gaa_prefixes : 1;
|
|
|
|
unsigned has_gaa_on_link_prefix : 1;
|
2007-02-01 15:54:40 +00:00
|
|
|
unsigned supports_all_posix_ai_flags : 1;
|
* Makefile.in: Build wincap.o.
* wincap.cc: New file.
* wincap.h: Ditto.
* autoload.cc: Add dynamic load statement for `CreateHardLinkA'.
* dcrt0.cc (os_being_run): Eliminated.
(osname): Ditto.
(iswinnt): Ditto.
(set_os_type): Ditto.
(dll_crt0_1): Call wincap.init() instead of set_os_type().
(_dll_crt0): Ditto.
* environ.cc (set_chunksize): New function.
(parse_thing): `forkchunk' setting now invokes function `set_chunksize'.
* fork.cc (chunksize): Eliminated. Moved to be member of wincap.
* host_dependent.h: Removed.
* syscalls.cc (_link): Try using `CreateHardLinkA' first, if available.
* cygheap.cc, dcrt0.cc, delqueue.cc, dir.cc,
environ.cc, fhandler.cc, fhandler.h, fhandler_console.cc,
fhandler_mem.cc, fork.cc, mmap.cc, net.cc, pinfo.cc, pinfo.h,
security.cc, syscalls.cc, sysconf.cc, syslog.cc, thread.cc,
times.cc, tty.cc, uinfo.cc, uname.cc, winsup.h: Use new wincap
capability check throughout.
* winsup.h: Include wincap.h. Eliminate extern declarations of
`os_being_run' and `iswinnt'. Eliminate `os_type" definition.
* include/cygwin/version.h: Bump version to 1.3.4.
2001-09-12 17:46:37 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class wincapc
|
|
|
|
{
|
2003-09-27 03:44:31 +00:00
|
|
|
OSVERSIONINFOEX version;
|
|
|
|
char osnam[40];
|
2006-01-10 18:11:32 +00:00
|
|
|
bool wow64;
|
2003-09-27 03:44:31 +00:00
|
|
|
void *caps;
|
* Makefile.in: Build wincap.o.
* wincap.cc: New file.
* wincap.h: Ditto.
* autoload.cc: Add dynamic load statement for `CreateHardLinkA'.
* dcrt0.cc (os_being_run): Eliminated.
(osname): Ditto.
(iswinnt): Ditto.
(set_os_type): Ditto.
(dll_crt0_1): Call wincap.init() instead of set_os_type().
(_dll_crt0): Ditto.
* environ.cc (set_chunksize): New function.
(parse_thing): `forkchunk' setting now invokes function `set_chunksize'.
* fork.cc (chunksize): Eliminated. Moved to be member of wincap.
* host_dependent.h: Removed.
* syscalls.cc (_link): Try using `CreateHardLinkA' first, if available.
* cygheap.cc, dcrt0.cc, delqueue.cc, dir.cc,
environ.cc, fhandler.cc, fhandler.h, fhandler_console.cc,
fhandler_mem.cc, fork.cc, mmap.cc, net.cc, pinfo.cc, pinfo.h,
security.cc, syscalls.cc, sysconf.cc, syslog.cc, thread.cc,
times.cc, tty.cc, uinfo.cc, uname.cc, winsup.h: Use new wincap
capability check throughout.
* winsup.h: Include wincap.h. Eliminate extern declarations of
`os_being_run' and `iswinnt'. Eliminate `os_type" definition.
* include/cygwin/version.h: Bump version to 1.3.4.
2001-09-12 17:46:37 +00:00
|
|
|
|
|
|
|
public:
|
|
|
|
void init ();
|
|
|
|
|
|
|
|
void set_chunksize (DWORD nchunksize);
|
2001-11-05 06:09:15 +00:00
|
|
|
|
* Makefile.in: Build wincap.o.
* wincap.cc: New file.
* wincap.h: Ditto.
* autoload.cc: Add dynamic load statement for `CreateHardLinkA'.
* dcrt0.cc (os_being_run): Eliminated.
(osname): Ditto.
(iswinnt): Ditto.
(set_os_type): Ditto.
(dll_crt0_1): Call wincap.init() instead of set_os_type().
(_dll_crt0): Ditto.
* environ.cc (set_chunksize): New function.
(parse_thing): `forkchunk' setting now invokes function `set_chunksize'.
* fork.cc (chunksize): Eliminated. Moved to be member of wincap.
* host_dependent.h: Removed.
* syscalls.cc (_link): Try using `CreateHardLinkA' first, if available.
* cygheap.cc, dcrt0.cc, delqueue.cc, dir.cc,
environ.cc, fhandler.cc, fhandler.h, fhandler_console.cc,
fhandler_mem.cc, fork.cc, mmap.cc, net.cc, pinfo.cc, pinfo.h,
security.cc, syscalls.cc, sysconf.cc, syslog.cc, thread.cc,
times.cc, tty.cc, uinfo.cc, uname.cc, winsup.h: Use new wincap
capability check throughout.
* winsup.h: Include wincap.h. Eliminate extern declarations of
`os_being_run' and `iswinnt'. Eliminate `os_type" definition.
* include/cygwin/version.h: Bump version to 1.3.4.
2001-09-12 17:46:37 +00:00
|
|
|
const char *osname () const { return osnam; }
|
2006-01-10 18:11:32 +00:00
|
|
|
const bool is_wow64 () const { return wow64; }
|
* Makefile.in: Build wincap.o.
* wincap.cc: New file.
* wincap.h: Ditto.
* autoload.cc: Add dynamic load statement for `CreateHardLinkA'.
* dcrt0.cc (os_being_run): Eliminated.
(osname): Ditto.
(iswinnt): Ditto.
(set_os_type): Ditto.
(dll_crt0_1): Call wincap.init() instead of set_os_type().
(_dll_crt0): Ditto.
* environ.cc (set_chunksize): New function.
(parse_thing): `forkchunk' setting now invokes function `set_chunksize'.
* fork.cc (chunksize): Eliminated. Moved to be member of wincap.
* host_dependent.h: Removed.
* syscalls.cc (_link): Try using `CreateHardLinkA' first, if available.
* cygheap.cc, dcrt0.cc, delqueue.cc, dir.cc,
environ.cc, fhandler.cc, fhandler.h, fhandler_console.cc,
fhandler_mem.cc, fork.cc, mmap.cc, net.cc, pinfo.cc, pinfo.h,
security.cc, syscalls.cc, sysconf.cc, syslog.cc, thread.cc,
times.cc, tty.cc, uinfo.cc, uname.cc, winsup.h: Use new wincap
capability check throughout.
* winsup.h: Include wincap.h. Eliminate extern declarations of
`os_being_run' and `iswinnt'. Eliminate `os_type" definition.
* include/cygwin/version.h: Bump version to 1.3.4.
2001-09-12 17:46:37 +00:00
|
|
|
|
2003-09-27 03:44:31 +00:00
|
|
|
#define IMPLEMENT(cap) cap() const { return ((wincaps *) this->caps)->cap; }
|
* Makefile.in: Build wincap.o.
* wincap.cc: New file.
* wincap.h: Ditto.
* autoload.cc: Add dynamic load statement for `CreateHardLinkA'.
* dcrt0.cc (os_being_run): Eliminated.
(osname): Ditto.
(iswinnt): Ditto.
(set_os_type): Ditto.
(dll_crt0_1): Call wincap.init() instead of set_os_type().
(_dll_crt0): Ditto.
* environ.cc (set_chunksize): New function.
(parse_thing): `forkchunk' setting now invokes function `set_chunksize'.
* fork.cc (chunksize): Eliminated. Moved to be member of wincap.
* host_dependent.h: Removed.
* syscalls.cc (_link): Try using `CreateHardLinkA' first, if available.
* cygheap.cc, dcrt0.cc, delqueue.cc, dir.cc,
environ.cc, fhandler.cc, fhandler.h, fhandler_console.cc,
fhandler_mem.cc, fork.cc, mmap.cc, net.cc, pinfo.cc, pinfo.h,
security.cc, syscalls.cc, sysconf.cc, syslog.cc, thread.cc,
times.cc, tty.cc, uinfo.cc, uname.cc, winsup.h: Use new wincap
capability check throughout.
* winsup.h: Include wincap.h. Eliminate extern declarations of
`os_being_run' and `iswinnt'. Eliminate `os_type" definition.
* include/cygwin/version.h: Bump version to 1.3.4.
2001-09-12 17:46:37 +00:00
|
|
|
|
|
|
|
DWORD IMPLEMENT (lock_file_highword)
|
|
|
|
DWORD IMPLEMENT (chunksize)
|
2006-10-31 18:41:16 +00:00
|
|
|
DWORD IMPLEMENT (heapslop)
|
2003-09-27 03:44:31 +00:00
|
|
|
bool IMPLEMENT (is_server)
|
* Makefile.in: Build wincap.o.
* wincap.cc: New file.
* wincap.h: Ditto.
* autoload.cc: Add dynamic load statement for `CreateHardLinkA'.
* dcrt0.cc (os_being_run): Eliminated.
(osname): Ditto.
(iswinnt): Ditto.
(set_os_type): Ditto.
(dll_crt0_1): Call wincap.init() instead of set_os_type().
(_dll_crt0): Ditto.
* environ.cc (set_chunksize): New function.
(parse_thing): `forkchunk' setting now invokes function `set_chunksize'.
* fork.cc (chunksize): Eliminated. Moved to be member of wincap.
* host_dependent.h: Removed.
* syscalls.cc (_link): Try using `CreateHardLinkA' first, if available.
* cygheap.cc, dcrt0.cc, delqueue.cc, dir.cc,
environ.cc, fhandler.cc, fhandler.h, fhandler_console.cc,
fhandler_mem.cc, fork.cc, mmap.cc, net.cc, pinfo.cc, pinfo.h,
security.cc, syscalls.cc, sysconf.cc, syslog.cc, thread.cc,
times.cc, tty.cc, uinfo.cc, uname.cc, winsup.h: Use new wincap
capability check throughout.
* winsup.h: Include wincap.h. Eliminate extern declarations of
`os_being_run' and `iswinnt'. Eliminate `os_type" definition.
* include/cygwin/version.h: Bump version to 1.3.4.
2001-09-12 17:46:37 +00:00
|
|
|
bool IMPLEMENT (has_security)
|
|
|
|
bool IMPLEMENT (has_security_descriptor_control)
|
|
|
|
bool IMPLEMENT (has_ip_helper_lib)
|
|
|
|
bool IMPLEMENT (has_physical_mem_access)
|
|
|
|
bool IMPLEMENT (has_move_file_ex)
|
|
|
|
bool IMPLEMENT (has_unreliable_pipes)
|
2001-10-16 14:53:26 +00:00
|
|
|
bool IMPLEMENT (has_raw_devices)
|
2001-10-15 09:41:18 +00:00
|
|
|
bool IMPLEMENT (has_valid_processorlevel)
|
2002-02-25 17:47:51 +00:00
|
|
|
bool IMPLEMENT (has_64bit_file_access)
|
2002-05-12 01:37:48 +00:00
|
|
|
bool IMPLEMENT (has_process_io_counters)
|
2002-07-24 11:01:37 +00:00
|
|
|
bool IMPLEMENT (supports_reading_modem_output_lines)
|
2002-10-15 17:04:20 +00:00
|
|
|
bool IMPLEMENT (needs_memory_protection)
|
2003-04-20 01:36:15 +00:00
|
|
|
bool IMPLEMENT (pty_needs_alloc_console)
|
2003-05-20 15:22:09 +00:00
|
|
|
bool IMPLEMENT (has_terminal_services)
|
2003-08-28 02:04:16 +00:00
|
|
|
bool IMPLEMENT (has_switch_to_thread)
|
2004-03-14 18:01:45 +00:00
|
|
|
bool IMPLEMENT (has_ioctl_storage_get_media_types_ex)
|
2004-12-28 01:27:26 +00:00
|
|
|
bool IMPLEMENT (start_proc_suspended)
|
2005-01-25 22:45:11 +00:00
|
|
|
bool IMPLEMENT (has_extended_priority_class)
|
2005-04-11 21:54:54 +00:00
|
|
|
bool IMPLEMENT (has_guid_volumes)
|
2005-06-30 02:52:14 +00:00
|
|
|
bool IMPLEMENT (has_null_console_handler_routine)
|
2005-09-28 19:33:18 +00:00
|
|
|
bool IMPLEMENT (has_disk_ex_ioctls)
|
2006-01-13 10:18:31 +00:00
|
|
|
bool IMPLEMENT (has_disabled_user_tos_setting)
|
2006-01-27 21:50:42 +00:00
|
|
|
bool IMPLEMENT (has_fileid_dirinfo)
|
2006-01-29 12:23:44 +00:00
|
|
|
bool IMPLEMENT (has_exclusiveaddruse)
|
2006-10-23 15:13:55 +00:00
|
|
|
bool IMPLEMENT (has_buggy_restart_scan)
|
2006-11-08 11:38:05 +00:00
|
|
|
bool IMPLEMENT (has_mandatory_integrity_control)
|
2006-11-27 12:59:59 +00:00
|
|
|
bool IMPLEMENT (needs_logon_sid_in_sid_list)
|
2006-12-05 10:59:21 +00:00
|
|
|
bool IMPLEMENT (needs_count_in_si_lpres2)
|
2006-12-10 16:43:30 +00:00
|
|
|
bool IMPLEMENT (has_recycle_dot_bin)
|
2007-01-17 19:26:58 +00:00
|
|
|
bool IMPLEMENT (has_gaa_prefixes)
|
|
|
|
bool IMPLEMENT (has_gaa_on_link_prefix)
|
2007-02-01 15:54:40 +00:00
|
|
|
bool IMPLEMENT (supports_all_posix_ai_flags)
|
* Makefile.in: Build wincap.o.
* wincap.cc: New file.
* wincap.h: Ditto.
* autoload.cc: Add dynamic load statement for `CreateHardLinkA'.
* dcrt0.cc (os_being_run): Eliminated.
(osname): Ditto.
(iswinnt): Ditto.
(set_os_type): Ditto.
(dll_crt0_1): Call wincap.init() instead of set_os_type().
(_dll_crt0): Ditto.
* environ.cc (set_chunksize): New function.
(parse_thing): `forkchunk' setting now invokes function `set_chunksize'.
* fork.cc (chunksize): Eliminated. Moved to be member of wincap.
* host_dependent.h: Removed.
* syscalls.cc (_link): Try using `CreateHardLinkA' first, if available.
* cygheap.cc, dcrt0.cc, delqueue.cc, dir.cc,
environ.cc, fhandler.cc, fhandler.h, fhandler_console.cc,
fhandler_mem.cc, fork.cc, mmap.cc, net.cc, pinfo.cc, pinfo.h,
security.cc, syscalls.cc, sysconf.cc, syslog.cc, thread.cc,
times.cc, tty.cc, uinfo.cc, uname.cc, winsup.h: Use new wincap
capability check throughout.
* winsup.h: Include wincap.h. Eliminate extern declarations of
`os_being_run' and `iswinnt'. Eliminate `os_type" definition.
* include/cygwin/version.h: Bump version to 1.3.4.
2001-09-12 17:46:37 +00:00
|
|
|
|
|
|
|
#undef IMPLEMENT
|
|
|
|
};
|
|
|
|
|
|
|
|
extern wincapc wincap;
|
|
|
|
|
|
|
|
#endif /* _WINCAP_H */
|