sys_layout.h
资源名称:tizos.rar [点击查看]
上传用户:qddsws
上传日期:2022-06-22
资源大小:723k
文件大小:0k
源码类别:
操作系统开发
开发平台:
C/C++
- #ifndef SYS_LAYOUT_H
- #define SYS_LAYOUT_H
- #include <types.h>
- #define SCREEN_DEV 0x00
- struct sys_gen_layout {
- struct device* screen;
- };
- void add_device (struct sys_gen_layout* lay, int type, struct device* dev);
- struct device * ret_dev (struct sys_gen_layout* lay, int type);
- #endif