MIDLUSER.C
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:1k
源码类别:

Windows编程

开发平台:

Visual C++

  1. /*************************************************************/
  2. /**                                                         **/
  3. /**                 Microsoft RPC Examples                  **/
  4. /**            OSF DCE Interop Sample Application           **/
  5. /**           Copyright(c) Microsoft Corp. 1993-1996        **/
  6. /**                                                         **/
  7. /*************************************************************/
  8. #include <stdlib.h>
  9. #include "msg.h"
  10. /*
  11.  * These are used in Microsoft clients and servers for stub memory allocation
  12.  */
  13. void __RPC_FAR * __RPC_USER MIDL_user_allocate(size_t size)
  14. {
  15.     return malloc(size);
  16. }
  17. void __RPC_USER MIDL_user_free(void __RPC_FAR *p)
  18. {
  19.     free(p);
  20. }