_gio.h
上传用户:dahaojd
上传日期:2008-01-29
资源大小:14357k
文件大小:1k
源码类别:

DSP编程

开发平台:

C/C++

  1. /*
  2.  *  Copyright 2003 by Texas Instruments Incorporated.
  3.  *  All rights reserved. Property of Texas Instruments Incorporated.
  4.  *  Restricted rights to use, duplicate or disclose this code are
  5.  *  granted through contract.
  6.  *  
  7.  */
  8. /* "@(#) DDK 1.10.00.23 07-02-03 (ddk-b12)" */
  9. /*
  10.  *  ======== _gio.h ========
  11.  *    GIO private header file.
  12.  *
  13.  */
  14.  
  15. #ifndef _GIO_
  16. #define _GIO_
  17. #include <std.h>
  18. #include <iom.h>
  19. #include <mem.h>
  20. #ifdef __cplusplus
  21. extern "C" {
  22. #endif
  23. #define _GIO_mkPacket()         MEM_alloc(0, sizeof(IOM_Packet), 0);
  24. #define _GIO_rmPacket(packet)   MEM_free(0, packet, sizeof(IOM_Packet));
  25. /*
  26.  * Mini-driver's i/o completion callback routine. 
  27.  */
  28. extern Void _GIO_iomCallback(Ptr cbArg, IOM_Packet *packet);
  29. #ifdef __cplusplus
  30. }
  31. #endif /* extern "C" */
  32. #endif /* _GIO_ */