Display the importing dll in the 0xdeadbeef message.
[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  */
8
9 #include <string.h>
10 #include <sys/types.h>
11 #include <unistd.h>
12
13 #include "windef.h"
14 #include "winbase.h"
15 #include "wine/winbase16.h"
16 #include "winerror.h"
17 #include "debugtools.h"
18
19 DEFAULT_DEBUG_CHANNEL(win32);
20
21 /***********************************************************************
22  *           UpdateResourceA                 (KERNEL32.707)
23  */
24 BOOL WINAPI UpdateResourceA(
25   HANDLE  hUpdate,
26   LPCSTR  lpType,
27   LPCSTR  lpName,
28   WORD    wLanguage,
29   LPVOID  lpData,
30   DWORD   cbData) {
31
32   FIXME(": stub\n");
33   SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
34   return FALSE;
35 }
36
37 /***********************************************************************
38  *           UpdateResourceW                 (KERNEL32.708)
39  */
40 BOOL WINAPI UpdateResourceW(
41   HANDLE  hUpdate,
42   LPCWSTR lpType,
43   LPCWSTR lpName,
44   WORD    wLanguage,
45   LPVOID  lpData,
46   DWORD   cbData) {
47
48   FIXME(": stub\n");
49   SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
50   return FALSE;
51 }