atlthunk: Add stub DLL.
Signed-off-by: Jacek Caban <jacek@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
5f296d971f
commit
3fe02210a9
|
@ -1119,6 +1119,7 @@ enable_atl100
|
|||
enable_atl110
|
||||
enable_atl80
|
||||
enable_atl90
|
||||
enable_atlthunk
|
||||
enable_atmlib
|
||||
enable_authz
|
||||
enable_avicap32
|
||||
|
@ -19357,6 +19358,7 @@ wine_fn_config_makefile dlls/atl110 enable_atl110
|
|||
wine_fn_config_makefile dlls/atl80 enable_atl80
|
||||
wine_fn_config_makefile dlls/atl80/tests enable_tests
|
||||
wine_fn_config_makefile dlls/atl90 enable_atl90
|
||||
wine_fn_config_makefile dlls/atlthunk enable_atlthunk
|
||||
wine_fn_config_makefile dlls/atmlib enable_atmlib
|
||||
wine_fn_config_makefile dlls/authz enable_authz
|
||||
wine_fn_config_makefile dlls/avicap32 enable_avicap32
|
||||
|
|
|
@ -3093,6 +3093,7 @@ WINE_CONFIG_MAKEFILE(dlls/atl110)
|
|||
WINE_CONFIG_MAKEFILE(dlls/atl80)
|
||||
WINE_CONFIG_MAKEFILE(dlls/atl80/tests)
|
||||
WINE_CONFIG_MAKEFILE(dlls/atl90)
|
||||
WINE_CONFIG_MAKEFILE(dlls/atlthunk)
|
||||
WINE_CONFIG_MAKEFILE(dlls/atmlib)
|
||||
WINE_CONFIG_MAKEFILE(dlls/authz)
|
||||
WINE_CONFIG_MAKEFILE(dlls/avicap32)
|
||||
|
|
|
@ -0,0 +1,5 @@
|
|||
MODULE = atlthunk.dll
|
||||
IMPORTLIB = atlthunk
|
||||
|
||||
C_SRCS = \
|
||||
atlthunk.c
|
|
@ -0,0 +1,45 @@
|
|||
/*
|
||||
* Copyright 2019 Jacek Caban for CodeWeavers
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Lesser General Public
|
||||
* License as published by the Free Software Foundation; either
|
||||
* version 2.1 of the License, or (at your option) any later version.
|
||||
*
|
||||
* This library is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* Lesser General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Lesser General Public
|
||||
* License along with this library; if not, write to the Free Software
|
||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
||||
*/
|
||||
|
||||
#include "windows.h"
|
||||
#include "atlthunk.h"
|
||||
#include "wine/debug.h"
|
||||
|
||||
WINE_DEFAULT_DEBUG_CHANNEL(atlthunk);
|
||||
|
||||
AtlThunkData_t* WINAPI AtlThunk_AllocateData(void)
|
||||
{
|
||||
FIXME("\n");
|
||||
return NULL;
|
||||
}
|
||||
|
||||
WNDPROC WINAPI AtlThunk_DataToCode(AtlThunkData_t *thunk)
|
||||
{
|
||||
FIXME("(%p)\n", thunk);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
void WINAPI AtlThunk_FreeData(AtlThunkData_t *thunk)
|
||||
{
|
||||
FIXME("(%p)\n", thunk);
|
||||
}
|
||||
|
||||
void WINAPI AtlThunk_InitData(AtlThunkData_t *thunk, void *proc, SIZE_T arg)
|
||||
{
|
||||
FIXME("(%p %p %lx)\n", thunk, proc, arg);
|
||||
}
|
|
@ -0,0 +1,4 @@
|
|||
@ stdcall AtlThunk_AllocateData()
|
||||
@ stdcall AtlThunk_DataToCode(ptr)
|
||||
@ stdcall AtlThunk_FreeData(ptr)
|
||||
@ stdcall AtlThunk_InitData(ptr ptr long)
|
Loading…
Reference in New Issue