* wincap.cc: New file.

* wincap.h: New file.
	* Makefile.in: Accomodate having our own wincap implementation now.
This commit is contained in:
Corinna Vinschen
2006-01-12 16:59:15 +00:00
parent 0ae86d187c
commit f68671330f
4 changed files with 62 additions and 4 deletions

View File

@ -0,0 +1,23 @@
/* 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);
}