2 * KERNEL32 thunks and other undocumented stuff
4 * Copyright 1997-1998 Marcus Meissner
5 * Copyright 1998 Ulrich Weigand
10 #include <sys/types.h>
15 #include "wine/winbase16.h"
17 #include "debugtools.h"
19 DEFAULT_DEBUG_CHANNEL(win32
);
21 /***********************************************************************
22 * UpdateResourceA (KERNEL32.707)
24 BOOL WINAPI
UpdateResourceA(
33 SetLastError(ERROR_CALL_NOT_IMPLEMENTED
);
37 /***********************************************************************
38 * UpdateResourceW (KERNEL32.708)
40 BOOL WINAPI
UpdateResourceW(
49 SetLastError(ERROR_CALL_NOT_IMPLEMENTED
);
54 /***********************************************************************
55 * WaitNamedPipeA [KERNEL32.725]
57 BOOL WINAPI
WaitNamedPipeA (LPCSTR lpNamedPipeName
, DWORD nTimeOut
)
58 { FIXME("%s 0x%08lx\n",lpNamedPipeName
,nTimeOut
);
59 SetLastError(ERROR_PIPE_NOT_CONNECTED
);
62 /***********************************************************************
63 * WaitNamedPipeW [KERNEL32.726]
65 BOOL WINAPI
WaitNamedPipeW (LPCWSTR lpNamedPipeName
, DWORD nTimeOut
)
66 { FIXME("%s 0x%08lx\n",debugstr_w(lpNamedPipeName
),nTimeOut
);
67 SetLastError(ERROR_PIPE_NOT_CONNECTED
);