mirror of
https://github.com/1dot13/source.git
synced 2026-07-22 13:40:22 +02:00
* rename 'Standard Gaming Platform' to 'sgp' * Adapt CMakeLists.txt files to renamed SGP directory * Lowercase it
14 lines
242 B
C
14 lines
242 B
C
#ifndef _PNGLOADER_H_
|
|
#define _PNGLOADER_H_
|
|
|
|
#include "types.h"
|
|
#include "himage.h"
|
|
|
|
bool LoadPNGFileToImage(HIMAGE hImage, UINT16 fContents);
|
|
|
|
bool LoadJPCFileToImage(HIMAGE hImage, UINT16 fContents);
|
|
|
|
|
|
#endif // _PNGLOADER_H_
|
|
|