mirror of
https://github.com/yuzu-emu/FasTC.git
synced 2025-01-10 01:05:34 +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
|
|
|