/*1* Copyright 2019 Jacek Caban for CodeWeavers2*3* This library is free software; you can redistribute it and/or4* modify it under the terms of the GNU Lesser General Public5* License as published by the Free Software Foundation; either6* version 2.1 of the License, or (at your option) any later version.7*8* This library is distributed in the hope that it will be useful,9* but WITHOUT ANY WARRANTY; without even the implied warranty of10* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU11* Lesser General Public License for more details.12*13* You should have received a copy of the GNU Lesser General Public14* License along with this library; if not, write to the Free Software15* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA16*/1718#ifndef __ATLTHUNK_H__19#define __ATLTHUNK_H__2021#ifdef __cplusplus22extern "C" {23#endif2425typedef struct AtlThunkData_t AtlThunkData_t;2627AtlThunkData_t* WINAPI AtlThunk_AllocateData(void);28WNDPROC WINAPI AtlThunk_DataToCode(AtlThunkData_t*);29void WINAPI AtlThunk_FreeData(AtlThunkData_t*);30void WINAPI AtlThunk_InitData(AtlThunkData_t*,void*,SIZE_T);3132#ifdef __cplusplus33} /* extern "C" */34#endif3536#endif /* __ATLTHUNK_H__ */373839