PNGReader.h 149 B

12345678
  1. #ifndef PNGREADER_H
  2. #define PNGREADER_H
  3. namespace PNGReader {
  4. bool load(const char* path, int* buffer, int& maxWidth, int& maxHeight);
  5. }
  6. #endif