26 lines
651 B
C
Executable File
26 lines
651 B
C
Executable File
/** \file
|
|
* \brief IupImgLib
|
|
*
|
|
* See Copyright Notice in iup.h
|
|
*/
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include "iup.h"
|
|
#include "iup_image.h"
|
|
|
|
#include "iup_imglib.h"
|
|
|
|
/* source code, included only here */
|
|
#include "iup_imglib_logos32x32_8bpp.h"
|
|
|
|
void iupImglibLogosMot32x32Open(void)
|
|
{
|
|
iupImageStockSet("IUP_Tecgraf", load_image_Tecgraf8, NULL);
|
|
iupImageStockSet("IUP_PUC-Rio", load_image_PUC_Rio8, NULL);
|
|
iupImageStockSet("IUP_BR", load_image_BR8, NULL);
|
|
iupImageStockSet("IUP_Lua", load_image_Lua8, NULL);
|
|
iupImageStockSet("IUP_TecgrafPUC-Rio", load_image_TecgrafPUC_Rio8, NULL);
|
|
iupImageStockSet("IUP_Petrobras", load_image_Petrobras8, NULL);
|
|
}
|