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

DSP编程

开发平台:

C/C++

  1. /* type.h
  2.  *
  3.  * Copyright (c) 2000 Texas Instruments Incorporated
  4.  *
  5.  *  Originally created by DNA Software,
  6.  *  Modified by Russ Heeschen for the FlashBurn
  7.  *  project.
  8.  */
  9. /*
  10.  * $Log:
  11.  */
  12.  
  13. #if !defined( TYPE__H )
  14. #define       TYPE__H
  15. typedef enum 
  16. {
  17.    FALSE = 0,
  18.    TRUE  = !FALSE
  19. } BOOL;
  20. typedef float f32;
  21. typedef long s32;
  22. typedef unsigned long u32;
  23. typedef short s16;
  24. typedef unsigned short u16;
  25. typedef unsigned char u8;
  26. typedef signed char s8;
  27. #endif