ole32/tests: Add some tests for loading and drawing various OLE formats.
[wine.git] / dlls / webservices / webservices_private.h
blob369ccbbbba9cd25d4cbc9ba671ab21fa9d1b52ec
1 /*
2 * Copyright 2015 Hans Leidekker for CodeWeavers
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19 struct xmlbuf
21 WS_HEAP *heap;
22 void *ptr;
23 SIZE_T size_allocated;
24 SIZE_T size;
27 void *ws_alloc( WS_HEAP *, SIZE_T ) DECLSPEC_HIDDEN;
28 void ws_free( WS_HEAP *, void * ) DECLSPEC_HIDDEN;
30 static inline void *heap_alloc( SIZE_T size )
32 return HeapAlloc( GetProcessHeap(), 0, size );
35 static inline void *heap_alloc_zero( SIZE_T size )
37 return HeapAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY, size );
40 static inline void *heap_realloc( void *mem, SIZE_T size )
42 return HeapReAlloc( GetProcessHeap(), 0, mem, size );
45 static inline BOOL heap_free( void *mem )
47 return HeapFree( GetProcessHeap(), 0, mem );