sys_layout.h
上传用户:qddsws
上传日期:2022-06-22
资源大小:723k
文件大小:0k
源码类别:

操作系统开发

开发平台:

C/C++

  1. #ifndef SYS_LAYOUT_H
  2. #define SYS_LAYOUT_H
  3. #include <types.h>
  4. #define SCREEN_DEV 0x00
  5. struct sys_gen_layout {
  6. struct device* screen;
  7. };
  8. void add_device (struct sys_gen_layout* lay, int type, struct device* dev);
  9. struct device * ret_dev (struct sys_gen_layout* lay, int type);
  10. #endif