mga_vid.h
上传用户:aoeyumen
上传日期:2007-01-06
资源大小:3329k
文件大小:1k
源码类别:

DVD

开发平台:

Unix_Linux

  1. #ifndef __LINUX_MGAVID_H
  2. #define __LINUX_MGAVID_H
  3. #ifndef AARONS_TYPES
  4. typedef unsigned long uint_32;
  5. typedef unsigned char uint_8;
  6. #endif
  7. typedef struct mga_vid_config_s
  8. {
  9. uint_32 src_width;
  10. uint_32 src_height;
  11. uint_32 dest_width;
  12. uint_32 dest_height;
  13. uint_32 x_org;
  14. uint_32 y_org;
  15. uint_8  colkey_on;
  16. uint_8  colkey_red;
  17. uint_8  colkey_green;
  18. uint_8  colkey_blue;
  19. } mga_vid_config_t;
  20. #define MGA_VID_CONFIG _IOR('J', 1, mga_vid_config_t)
  21. #define MGA_VID_ON     _IO ('J', 2)
  22. #define MGA_VID_OFF    _IO ('J', 3)
  23. #endif