blob: 427b47ed3cfb7224c0bc36c60ff3288d8ecc9256 [file] [log] [blame]
/*
* W32SYS
* helper DLL for Win32s
*
* Copyright (c) 1996 Anand Kumria
*/
#include "windows.h"
#include "w32sys.h"
/***********************************************************************
* GetWin32sInfo (W32SYS.12)
*/
WORD WINAPI GetWin32sInfo( LPWIN32SINFO lpInfo)
{
lpInfo->bMajor = 1;
lpInfo->bMinor = 3;
lpInfo->wBuildNumber = 0;
lpInfo->fDebug = FALSE;
return 0;
}