mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 21:21:33 +00:00
[WMIUTILS] Sync with Wine Staging 3.3. CORE-14434
This commit is contained in:
parent
e6368408c2
commit
f6c122569e
2 changed files with 2 additions and 21 deletions
|
@ -16,31 +16,12 @@
|
|||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
||||
*/
|
||||
|
||||
#include "wine/heap.h"
|
||||
#include "wine/unicode.h"
|
||||
|
||||
HRESULT WbemPath_create(LPVOID *) DECLSPEC_HIDDEN;
|
||||
HRESULT WbemStatusCodeText_create(LPVOID *) DECLSPEC_HIDDEN;
|
||||
|
||||
static inline void* __WINE_ALLOC_SIZE(1) heap_alloc(size_t size)
|
||||
{
|
||||
return HeapAlloc(GetProcessHeap(), 0, size);
|
||||
}
|
||||
|
||||
static inline void* __WINE_ALLOC_SIZE(1) heap_alloc_zero(size_t size)
|
||||
{
|
||||
return HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, size);
|
||||
}
|
||||
|
||||
static inline void* __WINE_ALLOC_SIZE(2) heap_realloc(void *mem, size_t size)
|
||||
{
|
||||
return HeapReAlloc(GetProcessHeap(), 0, mem, size);
|
||||
}
|
||||
|
||||
static inline BOOL heap_free(void *mem)
|
||||
{
|
||||
return HeapFree(GetProcessHeap(), 0, mem);
|
||||
}
|
||||
|
||||
static inline WCHAR *strdupW( const WCHAR *src )
|
||||
{
|
||||
WCHAR *dst;
|
||||
|
|
|
@ -209,7 +209,7 @@ reactos/dll/win32/winscard # Synced to WineStaging-3.3
|
|||
reactos/dll/win32/wintrust # Synced to WineStaging-3.3
|
||||
reactos/dll/win32/wldap32 # Synced to WineStaging-3.3
|
||||
reactos/dll/win32/wmi # Synced to WineStaging-2.9
|
||||
reactos/dll/win32/wmiutils # Synced to WineStaging-2.9
|
||||
reactos/dll/win32/wmiutils # Synced to WineStaging-3.3
|
||||
reactos/dll/win32/wmvcore # Synced to Wine-3.0
|
||||
reactos/dll/win32/wshom.ocx # Synced to Wine-3.0
|
||||
reactos/dll/win32/wtsapi32 # Synced to Wine-3.0
|
||||
|
|
Loading…
Reference in a new issue