sys_layout.h
Upload User: qddsws
Upload Date: 2022-06-22
Package Size: 723k
Code Size: 0k
Category:

OS Develop

Development Platform:

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