⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 device.h

📁 eCos操作系统源码
💻 H
字号:
/* * Copyright (c) 1999, 2000 Greg Haerr <greg@censoft.com> * * Engine-level Screen, Mouse and Keyboard device driver API's and types * * Contents of this file are not for general export *//* This is a fragment of the device.h file as used by the eCos port *//* of MicroWindows.  This file is required to allow the VNC server  *//* to use the font definition files supplied with microwindows.     *//* This file is only included by the font definition files, other   *//* files, including application files should include the            *//* vnc-server.h file which also contains these 2 typedefs           *//* Chris Garry <cgarry@sweeneydesign.co.uk> 26-Aug-2003             */typedef unsigned short  MWIMAGEBITS;    /* bitmap image unit size*/typedef struct {    char *      name;       /* font name*/    int     maxwidth;   /* max width in pixels*/    int     height;     /* height in pixels*/    int     ascent;     /* ascent (baseline) height*/    int     firstchar;  /* first character in bitmap*/    int     size;       /* font size in characters*/    MWIMAGEBITS *   bits;       /* 16-bit right-padded bitmap data*/    unsigned short *offset;     /* 256 offsets into bitmap data*/    unsigned char * width;      /* 256 character widths or 0 if fixed*/} MWCFONT;

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -