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

📄 image.h

📁 htp是一个HTML预处理器。页面可以用htp扩展的类HTML的宏编写。这可以简化维护一个一致外观的Web页面集.
💻 H
字号:
/*//// image.h//// Copyright (c) 1995-96 Jim Nelson.  Permission to distribute// granted by the author.  No warranties are made on the fitness of this// source code.//*/#ifndef IMAGE_H#define IMAGE_H/*// image file structure*/typedef struct tagIMAGEFILE{    char        *name;    FILE        *file;    uint        imageType;} IMAGEFILE;BOOL OpenImageFile(const char *filename, IMAGEFILE *imageFile);void CloseImageFile(IMAGEFILE *imageFile);BOOL GetImageDimensions(IMAGEFILE *imageFile, WORD *width, WORD *height);#endif

⌨️ 快捷键说明

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