blob: aa8bffead2e9f63ec7859dda28965dd5a73ae778 [file] [log] [blame]
Alexandre Julliard44ed71f1997-12-21 19:17:50 +00001/*
2 * KERNEL32 thunks and other undocumented stuff
3 *
Alexandre Julliarda11d7b11998-03-01 20:05:02 +00004 * Copyright 1997-1998 Marcus Meissner
Alexandre Julliardc7c217b1998-04-13 12:21:30 +00005 * Copyright 1998 Ulrich Weigand
Jean-Claude Cote72bf0861998-12-24 16:24:43 +00006 *
Alexandre Julliard44ed71f1997-12-21 19:17:50 +00007 */
8
Huw D M Davies34acebc1999-02-19 16:03:19 +00009#include <string.h>
Alexandre Julliard383da682000-02-10 22:15:21 +000010#include <sys/types.h>
11#include <unistd.h>
Huw D M Davies34acebc1999-02-19 16:03:19 +000012
Marcus Meissner04c3e1d1999-02-19 10:37:02 +000013#include "windef.h"
14#include "winbase.h"
15#include "wine/winbase16.h"
Alexandre Julliard0c0e3be1998-12-10 15:49:22 +000016#include "winerror.h"
Alexandre Julliardd5041fc2000-07-25 16:42:25 +000017#include "debugtools.h"
Alexandre Julliarda845b881998-06-01 10:44:35 +000018
Alexandre Julliardd5041fc2000-07-25 16:42:25 +000019DEFAULT_DEBUG_CHANNEL(win32);
Alexandre Julliarda845b881998-06-01 10:44:35 +000020
Alexandre Julliard0c0e3be1998-12-10 15:49:22 +000021/***********************************************************************
Patrik Stridvalldae8de62001-06-13 20:13:18 +000022 * UpdateResourceA (KERNEL32.@)
Alexandre Julliard0c0e3be1998-12-10 15:49:22 +000023 */
Alexandre Julliarda3960291999-02-26 11:11:13 +000024BOOL WINAPI UpdateResourceA(
25 HANDLE hUpdate,
Alexandre Julliard0c0e3be1998-12-10 15:49:22 +000026 LPCSTR lpType,
27 LPCSTR lpName,
28 WORD wLanguage,
29 LPVOID lpData,
30 DWORD cbData) {
31
Alexandre Julliardd5041fc2000-07-25 16:42:25 +000032 FIXME(": stub\n");
Alexandre Julliard0c0e3be1998-12-10 15:49:22 +000033 SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
34 return FALSE;
35}
36
37/***********************************************************************
Patrik Stridvalldae8de62001-06-13 20:13:18 +000038 * UpdateResourceW (KERNEL32.@)
Alexandre Julliard0c0e3be1998-12-10 15:49:22 +000039 */
Alexandre Julliarda3960291999-02-26 11:11:13 +000040BOOL WINAPI UpdateResourceW(
41 HANDLE hUpdate,
Alexandre Julliard0c0e3be1998-12-10 15:49:22 +000042 LPCWSTR lpType,
43 LPCWSTR lpName,
44 WORD wLanguage,
45 LPVOID lpData,
46 DWORD cbData) {
47
Alexandre Julliardd5041fc2000-07-25 16:42:25 +000048 FIXME(": stub\n");
Alexandre Julliard0c0e3be1998-12-10 15:49:22 +000049 SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
50 return FALSE;
51}