From 857a0fc5209ea0ec785023be3b485cc8822733aa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=A9=20van=20Geldorp?= Date: Fri, 18 Apr 2003 08:26:50 +0000 Subject: [PATCH] Have GetACP() return something sensible svn path=/trunk/; revision=4545 --- reactos/lib/kernel32/misc/stubs.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reactos/lib/kernel32/misc/stubs.c b/reactos/lib/kernel32/misc/stubs.c index 589deb0b097..e6f608f570c 100644 --- a/reactos/lib/kernel32/misc/stubs.c +++ b/reactos/lib/kernel32/misc/stubs.c @@ -1,4 +1,4 @@ -/* $Id: stubs.c,v 1.47 2003/02/12 03:44:20 ekohl Exp $ +/* $Id: stubs.c,v 1.48 2003/04/18 08:26:50 gvg Exp $ * * KERNEL32.DLL stubs (unimplemented functions) * Remove from this file, if you implement them. @@ -284,7 +284,7 @@ STDCALL GetACP (VOID) { SetLastError(ERROR_CALL_NOT_IMPLEMENTED); - return 0; + return 1252; } #endif