/*++ Copyright (C) 1996-2001 Microsoft Corporation Module Name: Globals.cpp Abstract: History: --*/ #include "PreComp.h" #include #ifndef INITGUID #define INITGUID #endif #include #include #include #include #include #include "Globals.h" extern "C" void * __RPC_API MIDL_user_allocate ( size_t a_Size ) { return malloc ( a_Size ) ; } extern "C" void __RPC_API MIDL_user_free( void *a_Void ) { free ( a_Void ) ; }