/*1* Copyright (C) 2005 Francois Gouget2*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 __WINE_ADSHLP_H19#define __WINE_ADSHLP_H2021#ifdef __cplusplus22extern "C" {23#endif2425BOOL WINAPI FreeADsMem(void*);26void* WINAPI AllocADsMem(DWORD) __WINE_ALLOC_SIZE(1) __WINE_DEALLOC(FreeADsMem) __WINE_MALLOC;27void* WINAPI ReallocADsMem(void*,DWORD,DWORD) __WINE_ALLOC_SIZE(3) __WINE_DEALLOC(FreeADsMem);28BOOL WINAPI FreeADsStr(WCHAR*);29WCHAR* WINAPI AllocADsStr(WCHAR*) __WINE_DEALLOC(FreeADsStr) __WINE_MALLOC;3031HRESULT WINAPI ADsBuildEnumerator(IADsContainer*,IEnumVARIANT**);32HRESULT WINAPI ADsBuildVarArrayStr(LPWSTR*,DWORD,VARIANT*);33HRESULT WINAPI ADsBuildVarArrayInt(LPDWORD,DWORD,VARIANT*);34HRESULT WINAPI ADsEnumerateNext(IEnumVARIANT*,ULONG,VARIANT*,ULONG*);35HRESULT WINAPI ADsGetObject(LPCWSTR,REFIID,VOID**);36HRESULT WINAPI ADsOpenObject(LPCWSTR,LPCWSTR,LPCWSTR,DWORD,REFIID,VOID**);3738#ifdef __cplusplus39}40#endif4142#endif434445