Windows NT 4.0 source code leak
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

21 lines
574 B

//+-------------------------------------------------------------------------
//
// Copyright (C) 1992, Microsoft Corporation.
//
// File: alloc.hxx
//
// Contents: memory allocation functions for RPC transmission
//
// Functions: MIDL_user_allocate
// MIDL_user_free
//
// History: 02-Sep-92 Rickhi Created
//
//--------------------------------------------------------------------------
#ifndef __MIDL_ALLOC_HXX
#define __MIDL_ALLOC_HXX
extern "C" void * MIDL_user_allocate(size_t len);
extern "C" void MIDL_user_free(void * pvMemory);
#endif // __MIDL_ALLOC_HXX