krnl386: Mark function that are only called from assembly as hidden.

Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Alexandre Julliard 2017-07-25 11:50:51 +02:00
parent c293acac01
commit 5b71091b43
2 changed files with 2 additions and 2 deletions

View File

@ -2123,7 +2123,7 @@ LPVOID WINAPI GetPK16SysVar(void)
/**********************************************************************
* CommonUnimpStub (KERNEL32.17)
*/
int WINAPI __regs_CommonUnimpStub( const char *name, int type )
int WINAPI DECLSPEC_HIDDEN __regs_CommonUnimpStub( const char *name, int type )
{
FIXME("generic stub %s\n", debugstr_a(name));

View File

@ -286,7 +286,7 @@ done:
* VxDCall7 (KERNEL32.8)
* VxDCall8 (KERNEL32.9)
*/
void WINAPI __regs_VxDCall( DWORD service, CONTEXT *context )
void WINAPI DECLSPEC_HIDDEN __regs_VxDCall( DWORD service, CONTEXT *context )
{
unsigned int i;
VxDCallProc proc = NULL;