krnl386: Mark function that are only called from assembly as hidden.
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
c293acac01
commit
5b71091b43
|
@ -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));
|
||||
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue