summaryrefslogtreecommitdiffstats
path: root/src/freeimage-test.cpp
blob: 10a4eb1beacf0c6a35d661ed561d13eb0fce8401 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*
 * This file is part of MXE.
 * See index.html for further information.
 */

#include <FreeImagePlus.h>

int main()
{
    fipImage fi;

    fi.setSize(FIT_BITMAP, 800, 600, 24);

    return 0;
}