Added resources for Japanese.
[wine] / win32 / kernel32.c
1 /*
2  * KERNEL32 thunks and other undocumented stuff
3  *
4  * Copyright 1997-1998 Marcus Meissner
5  * Copyright 1998      Ulrich Weigand
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * This library is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with this library; if not, write to the Free Software
19  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
20  */
21
22 #include <string.h>
23 #include <sys/types.h>
24 #include <unistd.h>
25
26 #include "windef.h"
27 #include "winbase.h"
28 #include "wine/winbase16.h"
29 #include "winerror.h"
30 #include "wine/debug.h"
31
32 WINE_DEFAULT_DEBUG_CHANNEL(win32);
33
34 /***********************************************************************
35  *           UpdateResourceA                 (KERNEL32.@)
36  */
37 BOOL WINAPI UpdateResourceA(
38   HANDLE  hUpdate,
39   LPCSTR  lpType,
40   LPCSTR  lpName,
41   WORD    wLanguage,
42   LPVOID  lpData,
43   DWORD   cbData) {
44
45   FIXME(": stub\n");
46   SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
47   return FALSE;
48 }
49
50 /***********************************************************************
51  *           UpdateResourceW                 (KERNEL32.@)
52  */
53 BOOL WINAPI UpdateResourceW(
54   HANDLE  hUpdate,
55   LPCWSTR lpType,
56   LPCWSTR lpName,
57   WORD    wLanguage,
58   LPVOID  lpData,
59   DWORD   cbData) {
60
61   FIXME(": stub\n");
62   SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
63   return FALSE;
64 }