mirror of
https://github.com/yuzu-emu/FasTC
synced 2024-11-26 08:27:56 +00:00
29 lines
309 B
C++
29 lines
309 B
C++
|
#include "ImageFile.h"
|
||
|
|
||
|
#ifdef _MSC_VER
|
||
|
ImageFile::ImageFile(const char *filename) {
|
||
|
}
|
||
|
|
||
|
ImageFile::~ImageFile() {
|
||
|
}
|
||
|
|
||
|
void ImageFile::GetPixels() const {
|
||
|
|
||
|
}
|
||
|
|
||
|
#else
|
||
|
#include <stdlib.h>
|
||
|
|
||
|
ImageFile::ImageFile(const char *filename) {
|
||
|
}
|
||
|
|
||
|
ImageFile::~ImageFile() {
|
||
|
}
|
||
|
|
||
|
void ImageFile::GetPixels() const {
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif
|
||
|
|