Add WINAPI for EntryAddrProc.
This commit is contained in:
parent
f73b72b557
commit
e5266e8a44
|
@ -198,7 +198,7 @@ extern void NE_DumpModule( HMODULE16 hModule );
|
|||
extern void NE_WalkModules(void);
|
||||
extern void NE_RegisterModule( NE_MODULE *pModule );
|
||||
extern WORD NE_GetOrdinal( HMODULE16 hModule, const char *name );
|
||||
extern FARPROC16 NE_GetEntryPoint( HMODULE16 hModule, WORD ordinal );
|
||||
extern FARPROC16 WINAPI NE_GetEntryPoint( HMODULE16 hModule, WORD ordinal );
|
||||
extern FARPROC16 NE_GetEntryPointEx( HMODULE16 hModule, WORD ordinal, BOOL16 snoop );
|
||||
extern BOOL16 NE_SetEntryPoint( HMODULE16 hModule, WORD ordinal, WORD offset );
|
||||
extern HANDLE NE_OpenFile( NE_MODULE *pModule );
|
||||
|
|
|
@ -289,7 +289,7 @@ WORD NE_GetOrdinal( HMODULE16 hModule, const char *name )
|
|||
*
|
||||
* Return the entry point for a given ordinal.
|
||||
*/
|
||||
FARPROC16 NE_GetEntryPoint( HMODULE16 hModule, WORD ordinal )
|
||||
FARPROC16 WINAPI NE_GetEntryPoint( HMODULE16 hModule, WORD ordinal )
|
||||
{
|
||||
return NE_GetEntryPointEx( hModule, ordinal, TRUE );
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue