mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
Have GetACP() return something sensible
svn path=/trunk/; revision=4545
This commit is contained in:
parent
70ce973518
commit
857a0fc520
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue