blob: 125ea8af92ff4a91a80c9e3ff7f92414cb3d3f53 [file] [log] [blame]
/*
* W32SYS
* helper DLL for Win32s
*
* Copyright (c) 1996 Anand Kumria
*/
#include <unistd.h>
#include "windef.h"
#include "wine/windef16.h"
#include "wine/winbase16.h"
#include "debugtools.h"
DEFAULT_DEBUG_CHANNEL(dll);
typedef struct
{
BYTE bMajor;
BYTE bMinor;
WORD wBuildNumber;
BOOL16 fDebug;
} WIN32SINFO, *LPWIN32SINFO;
/***********************************************************************
* GetWin32sInfo (W32SYS.12)
* RETURNS
* 0 on success, 1 on failure
*/
WORD WINAPI GetWin32sInfo16(
LPWIN32SINFO lpInfo /* [out] Win32S special information */
) {
lpInfo->bMajor = 1;
lpInfo->bMinor = 3;
lpInfo->wBuildNumber = 0;
lpInfo->fDebug = FALSE;
return 0;
}
/***********************************************************************
* GetW32SysVersion16 (W32SYS.5)
*/
WORD WINAPI GetW32SysVersion16(void)
{
return 0x100;
}
/***********************************************************************
* GetPEResourceTable (W32SYS.7)
* retrieves the resourcetable from the passed filedescriptor
* RETURNS
* dunno what.
*/
WORD WINAPI GetPEResourceTable16(
HFILE16 hf /* [in] filedescriptor to opened executeable */
) {
return 0;
}
/***********************************************************************
* LoadPeResource
*/
DWORD WINAPI LoadPeResource16(WORD x,SEGPTR y) {
FIXME("(0x%04x,0x%08lx),stub!\n",x,y);
return 0;
}
/**********************************************************************
* IsPeFormat16 (W32SYS.2)
* Checks the passed filename if it is a PE format executeable
* RETURNS
* TRUE, if it is.
* FALSE if not.
*/
BOOL16 WINAPI IsPeFormat16( LPSTR fn, /* [in] filename to executeable */
HFILE16 hf16 ) /* [in] open file, if filename is NULL */
{
BOOL16 ret = FALSE;
IMAGE_DOS_HEADER mzh;
OFSTRUCT ofs;
DWORD xmagic;
HFILE hf;
if (fn) hf = OpenFile(fn,&ofs,OF_READ);
else hf = DosFileHandleToWin32Handle( hf16 );
if (hf == HFILE_ERROR) return FALSE;
_llseek(hf,0,SEEK_SET);
if (sizeof(mzh)!=_lread(hf,&mzh,sizeof(mzh))) goto done;
if (mzh.e_magic!=IMAGE_DOS_SIGNATURE) goto done;
_llseek(hf,mzh.e_lfanew,SEEK_SET);
if (sizeof(DWORD)!=_lread(hf,&xmagic,sizeof(DWORD))) goto done;
ret = (xmagic == IMAGE_NT_SIGNATURE);
done:
if (fn) _lclose(hf);
return ret;
}