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:
Diffstat (limited to 'winsup/cygserver/wincap.cc')
-rw-r--r--winsup/cygserver/wincap.cc23
1 files changed, 0 insertions, 23 deletions
diff --git a/winsup/cygserver/wincap.cc b/winsup/cygserver/wincap.cc
deleted file mode 100644
index 875415d28..000000000
--- a/winsup/cygserver/wincap.cc
+++ /dev/null
@@ -1,23 +0,0 @@
-/* wincap.cc -- figure out on which OS we're running.
- Lightweight version for Cygserver
-
- Copyright 2006 Red Hat, Inc.
-
-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. */
-
-#include "woutsup.h"
-
-wincapc wincap;
-
-void
-wincapc::init ()
-{
- memset (&version, 0, sizeof version);
- /* Request simple version info. */
- version.dwOSVersionInfoSize = sizeof (OSVERSIONINFO);
- GetVersionEx (&version);
-}