summaryrefslogtreecommitdiffstats
path: root/src/freeimage-test.cpp
blob: 328c0767d8023bf8d8772d05b49b9a02b79a8ffa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/*
 * This file is part of MXE. See LICENSE.md for licensing information.
 */

#include <FreeImagePlus.h>

int main()
{
    fipImage fi;

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

    return 0;
}