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

操作系统开发

开发平台:

C/C++

  1. #include <devices/sys_layout.h>
  2. void add_device (struct sys_gen_layout* lay, int type, struct device* dev){
  3. switch (type) {
  4. case SCREEN_DEV:
  5. lay->screen=dev;
  6. break;
  7. }
  8. }
  9. struct device * ret_dev (struct sys_gen_layout* lay, int type) {
  10. switch (type) {
  11. case SCREEN_DEV:
  12. return lay->screen;
  13. break;
  14. }
  15. return NULL;
  16. }