Added stub for WIN32S16.EXP1 (most likely LoadPeResource16).
This commit is contained in:
parent
891305b980
commit
2f521d3e98
|
@ -8,6 +8,10 @@
|
|||
#include "windef.h"
|
||||
#include "w32sys.h"
|
||||
|
||||
#include "debugtools.h"
|
||||
|
||||
DEFAULT_DEBUG_CHANNEL(dll)
|
||||
|
||||
/***********************************************************************
|
||||
* GetWin32sInfo (W32SYS.12)
|
||||
* RETURNS
|
||||
|
@ -43,3 +47,8 @@ WORD WINAPI GetPEResourceTable16(
|
|||
) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
DWORD WINAPI LoadPeResource16(WORD x,SEGPTR y) {
|
||||
FIXME("(0x%04x,0x%08lx),stub!\n",x,y);
|
||||
return 0;
|
||||
}
|
||||
|
|
|
@ -11,5 +11,5 @@ type win16
|
|||
8 stub EXECPEEX
|
||||
9 stub ITSME
|
||||
10 stub W32SERROR
|
||||
11 stub EXP1
|
||||
11 pascal LoadPeResource(word ptr) LoadPeResource16
|
||||
12 pascal16 GetWin32sInfo(ptr) GetWin32sInfo16
|
||||
|
|
Loading…
Reference in New Issue