atmlib: Add stub for ATMFinish.

Signed-off-by: Louis Lenders <xerox.xerox2000x@gmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
oldstable
Louis Lenders 2018-05-11 14:31:10 +02:00 committed by Alexandre Julliard
parent 142169960a
commit c5d0bad48e
2 changed files with 7 additions and 1 deletions

View File

@ -16,7 +16,7 @@
@ stub ATMEnumMMFonts
@ stub ATMEnumMMFontsA
@ stub ATMEnumMMFontsW
@ stub ATMFinish
@ stdcall ATMFinish()
@ stub ATMFontAvailable
@ stub ATMFontAvailableA
@ stub ATMFontAvailableW

View File

@ -45,3 +45,9 @@ BOOL WINAPI ATMProperlyLoaded(void)
FIXME("stub\n");
return FALSE;
}
int WINAPI ATMFinish(void)
{
FIXME("stub\n");
return 0;
}