0876456a22
Further GUI Editor improvements
26 lines
466 B
C++
26 lines
466 B
C++
|
|
|
|
#ifndef _READPIC_H_
|
|
#define _READPIC_H_
|
|
|
|
#ifdef _MSC_VER
|
|
#pragma warning(disable:4786)
|
|
#endif
|
|
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
using namespace std;
|
|
#include <nel/misc/types_nl.h>
|
|
#include <nel/misc/rgba.h>
|
|
|
|
//============================================================
|
|
// API.
|
|
//============================================================
|
|
|
|
|
|
bool PIC_LoadPic(const std::string &Path, std::vector<NLMISC::CBGRA> &tampon, uint &Width, uint &Height);
|
|
|
|
|
|
|
|
#endif
|