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

📄 library.h

📁 PIXIL is a small footprint operating environment, complete with PDA PIM applications, a browser and
💻 H
字号:
#ifndef LIBRARY_H#define LIBRARY_H#include "NXPicture.h"#include "NXMCursor.h"class Library{				/* global structure of all OSes */  public:    static const int WINGDOWS = 0;	/* OS 0 is wingdows */    static const int OFF = -1;	/* OS -1 means the computer is off */    static const int PC = 5;	/* OS >= PC means the OS is a PC OS */    static const int NUM_OS = 9;	/* The number of OSes (not Wingdows) */    int width, height;		/* size of OS picture */    NXPicture os[NUM_OS + 1];	/* array of OS pictures */    NXMCursor cursor[NUM_OS + 1];	/* array of OS cursors (drag/drop) */    void load_pix();};#endif

⌨️ 快捷键说明

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