open.h

来自「这个刚才那个的源代码」· C头文件 代码 · 共 23 行

H
23
字号
#ifndef CORONA_OPEN_H
#define CORONA_OPEN_H


#include "corona.h"


namespace corona {
  Image* OpenBMP (File* file); // OpenBMP.cpp
#ifndef NO_JPEG
  Image* OpenJPEG(File* file); // OpenJPEG.cpp
#endif
  Image* OpenPCX (File* file); // OpenPCX.cpp
#ifndef NO_PNG
  Image* OpenPNG (File* file); // OpenPNG.cpp
#endif
  Image* OpenTGA (File* file); // OpenTGA.cpp
  Image* OpenGIF (File* file); // OpenGIF.cpp
}


#endif

⌨️ 快捷键说明

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