atmlib: Add stub for ATMFinish.

Signed-off-by: Louis Lenders <xerox.xerox2000x@gmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
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 ATMEnumMMFonts
@ stub ATMEnumMMFontsA @ stub ATMEnumMMFontsA
@ stub ATMEnumMMFontsW @ stub ATMEnumMMFontsW
@ stub ATMFinish @ stdcall ATMFinish()
@ stub ATMFontAvailable @ stub ATMFontAvailable
@ stub ATMFontAvailableA @ stub ATMFontAvailableA
@ stub ATMFontAvailableW @ stub ATMFontAvailableW

View File

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