winedos: DPMI_FreeInternalRMCB() is not used so remove it.

This commit is contained in:
Francois Gouget 2009-06-15 10:49:40 +02:00 committed by Alexandre Julliard
parent c772cdfca5
commit c54031960a
2 changed files with 0 additions and 7 deletions

View File

@ -450,7 +450,6 @@ extern void WINAPI DOSVM_Int31Handler(CONTEXT86*);
extern void WINAPI DOSVM_RawModeSwitchHandler(CONTEXT86*);
extern BOOL DOSVM_IsDos32(void);
extern FARPROC16 WINAPI DPMI_AllocInternalRMCB(RMCBPROC);
extern void WINAPI DPMI_FreeInternalRMCB(FARPROC16);
extern int DPMI_CallRMProc(CONTEXT86*,LPWORD,int,int);
extern BOOL DOSVM_CheckWrappers(CONTEXT86*);

View File

@ -705,12 +705,6 @@ static int DPMI_FreeRMCB( DWORD address )
}
void WINAPI DPMI_FreeInternalRMCB( FARPROC16 proc )
{
DPMI_FreeRMCB( (DWORD)proc );
}
/**********************************************************************
* DOSVM_RawModeSwitchHandler
*