Alexandre Julliard | 44ed71f | 1997-12-21 19:17:50 +0000 | [diff] [blame] | 1 | /* |
| 2 | * KERNEL32 thunks and other undocumented stuff |
| 3 | * |
Alexandre Julliard | a11d7b1 | 1998-03-01 20:05:02 +0000 | [diff] [blame] | 4 | * Copyright 1997-1998 Marcus Meissner |
Alexandre Julliard | c7c217b | 1998-04-13 12:21:30 +0000 | [diff] [blame] | 5 | * Copyright 1998 Ulrich Weigand |
Jean-Claude Cote | 72bf086 | 1998-12-24 16:24:43 +0000 | [diff] [blame] | 6 | * |
Alexandre Julliard | 44ed71f | 1997-12-21 19:17:50 +0000 | [diff] [blame] | 7 | */ |
| 8 | |
Huw D M Davies | 34acebc | 1999-02-19 16:03:19 +0000 | [diff] [blame] | 9 | #include <string.h> |
Alexandre Julliard | 383da68 | 2000-02-10 22:15:21 +0000 | [diff] [blame] | 10 | #include <sys/types.h> |
| 11 | #include <unistd.h> |
Huw D M Davies | 34acebc | 1999-02-19 16:03:19 +0000 | [diff] [blame] | 12 | |
Marcus Meissner | 04c3e1d | 1999-02-19 10:37:02 +0000 | [diff] [blame] | 13 | #include "windef.h" |
| 14 | #include "winbase.h" |
| 15 | #include "wine/winbase16.h" |
Alexandre Julliard | 0c0e3be | 1998-12-10 15:49:22 +0000 | [diff] [blame] | 16 | #include "winerror.h" |
Alexandre Julliard | d5041fc | 2000-07-25 16:42:25 +0000 | [diff] [blame] | 17 | #include "debugtools.h" |
Alexandre Julliard | a845b88 | 1998-06-01 10:44:35 +0000 | [diff] [blame] | 18 | |
Alexandre Julliard | d5041fc | 2000-07-25 16:42:25 +0000 | [diff] [blame] | 19 | DEFAULT_DEBUG_CHANNEL(win32); |
Alexandre Julliard | a845b88 | 1998-06-01 10:44:35 +0000 | [diff] [blame] | 20 | |
Alexandre Julliard | 0c0e3be | 1998-12-10 15:49:22 +0000 | [diff] [blame] | 21 | /*********************************************************************** |
Patrik Stridvall | dae8de6 | 2001-06-13 20:13:18 +0000 | [diff] [blame] | 22 | * UpdateResourceA (KERNEL32.@) |
Alexandre Julliard | 0c0e3be | 1998-12-10 15:49:22 +0000 | [diff] [blame] | 23 | */ |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 24 | BOOL WINAPI UpdateResourceA( |
| 25 | HANDLE hUpdate, |
Alexandre Julliard | 0c0e3be | 1998-12-10 15:49:22 +0000 | [diff] [blame] | 26 | LPCSTR lpType, |
| 27 | LPCSTR lpName, |
| 28 | WORD wLanguage, |
| 29 | LPVOID lpData, |
| 30 | DWORD cbData) { |
| 31 | |
Alexandre Julliard | d5041fc | 2000-07-25 16:42:25 +0000 | [diff] [blame] | 32 | FIXME(": stub\n"); |
Alexandre Julliard | 0c0e3be | 1998-12-10 15:49:22 +0000 | [diff] [blame] | 33 | SetLastError(ERROR_CALL_NOT_IMPLEMENTED); |
| 34 | return FALSE; |
| 35 | } |
| 36 | |
| 37 | /*********************************************************************** |
Patrik Stridvall | dae8de6 | 2001-06-13 20:13:18 +0000 | [diff] [blame] | 38 | * UpdateResourceW (KERNEL32.@) |
Alexandre Julliard | 0c0e3be | 1998-12-10 15:49:22 +0000 | [diff] [blame] | 39 | */ |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 40 | BOOL WINAPI UpdateResourceW( |
| 41 | HANDLE hUpdate, |
Alexandre Julliard | 0c0e3be | 1998-12-10 15:49:22 +0000 | [diff] [blame] | 42 | LPCWSTR lpType, |
| 43 | LPCWSTR lpName, |
| 44 | WORD wLanguage, |
| 45 | LPVOID lpData, |
| 46 | DWORD cbData) { |
| 47 | |
Alexandre Julliard | d5041fc | 2000-07-25 16:42:25 +0000 | [diff] [blame] | 48 | FIXME(": stub\n"); |
Alexandre Julliard | 0c0e3be | 1998-12-10 15:49:22 +0000 | [diff] [blame] | 49 | SetLastError(ERROR_CALL_NOT_IMPLEMENTED); |
| 50 | return FALSE; |
| 51 | } |