vrclient: Add destructors for win objects

This commit is contained in:
Józef Kucia 2018-04-19 15:50:32 +02:00
parent 832108fc39
commit a1031dbce4
20 changed files with 769 additions and 84 deletions

View file

@ -203,6 +203,12 @@ winIVRChaperoneSetup_IVRChaperoneSetup_005 *create_winIVRChaperoneSetup_IVRChape
return r;
}
void destroy_winIVRChaperoneSetup_IVRChaperoneSetup_005(void *object)
{
TRACE("%p\n", object);
HeapFree(GetProcessHeap(), 0, object);
}
#include "cppIVRChaperoneSetup_IVRChaperoneSetup_004.h"
typedef struct __winIVRChaperoneSetup_IVRChaperoneSetup_004 {
@ -358,3 +364,9 @@ winIVRChaperoneSetup_IVRChaperoneSetup_004 *create_winIVRChaperoneSetup_IVRChape
return r;
}
void destroy_winIVRChaperoneSetup_IVRChaperoneSetup_004(void *object)
{
TRACE("%p\n", object);
HeapFree(GetProcessHeap(), 0, object);
}