Change BIOSDATA's rows on screen minus 1 from 23 to 24.
[wine/dcerpc.git] / win32 / kernel32.c
blob6c3d695e0af1efa5a14d47ea8f5ae4e6f84e239c
1 /*
2 * KERNEL32 thunks and other undocumented stuff
4 * Copyright 1997-1998 Marcus Meissner
5 * Copyright 1998 Ulrich Weigand
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.
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.
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
22 #include <string.h>
23 #include <sys/types.h>
24 #include <unistd.h>
26 #include "windef.h"
27 #include "winbase.h"
28 #include "wine/winbase16.h"
29 #include "winerror.h"
30 #include "wine/debug.h"
32 WINE_DEFAULT_DEBUG_CHANNEL(win32);
34 /***********************************************************************
35 * UpdateResourceA (KERNEL32.@)
37 BOOL WINAPI UpdateResourceA(
38 HANDLE hUpdate,
39 LPCSTR lpType,
40 LPCSTR lpName,
41 WORD wLanguage,
42 LPVOID lpData,
43 DWORD cbData) {
45 FIXME(": stub\n");
46 SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
47 return FALSE;
50 /***********************************************************************
51 * UpdateResourceW (KERNEL32.@)
53 BOOL WINAPI UpdateResourceW(
54 HANDLE hUpdate,
55 LPCWSTR lpType,
56 LPCWSTR lpName,
57 WORD wLanguage,
58 LPVOID lpData,
59 DWORD cbData) {
61 FIXME(": stub\n");
62 SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
63 return FALSE;