kernel32.c 1.05 KB
Newer Older
Alexandre Julliard's avatar
Alexandre Julliard committed
1 2 3
/*
 * KERNEL32 thunks and other undocumented stuff
 *
Alexandre Julliard's avatar
Alexandre Julliard committed
4
 * Copyright 1997-1998 Marcus Meissner
Alexandre Julliard's avatar
Alexandre Julliard committed
5
 * Copyright 1998      Ulrich Weigand
6
 *
Alexandre Julliard's avatar
Alexandre Julliard committed
7 8
 */

9
#include <string.h>
10 11
#include <sys/types.h>
#include <unistd.h>
12

13 14 15
#include "windef.h"
#include "winbase.h"
#include "wine/winbase16.h"
16
#include "winerror.h"
17
#include "debugtools.h"
Alexandre Julliard's avatar
Alexandre Julliard committed
18

19
DEFAULT_DEBUG_CHANNEL(win32);
Alexandre Julliard's avatar
Alexandre Julliard committed
20

21
/***********************************************************************
22
 *           UpdateResourceA                 (KERNEL32.@)
23
 */
24 25
BOOL WINAPI UpdateResourceA(
  HANDLE  hUpdate,
26 27 28 29 30 31
  LPCSTR  lpType,
  LPCSTR  lpName,
  WORD    wLanguage,
  LPVOID  lpData,
  DWORD   cbData) {

32
  FIXME(": stub\n");
33 34 35 36 37
  SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
  return FALSE;
}

/***********************************************************************
38
 *           UpdateResourceW                 (KERNEL32.@)
39
 */
40 41
BOOL WINAPI UpdateResourceW(
  HANDLE  hUpdate,
42 43 44 45 46 47
  LPCWSTR lpType,
  LPCWSTR lpName,
  WORD    wLanguage,
  LPVOID  lpData,
  DWORD   cbData) {

48
  FIXME(": stub\n");
49 50 51
  SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
  return FALSE;
}