summaryrefslogtreecommitdiff
path: root/desktop/win32/source/sowrapper.cxx
blob: 19009514c523a2309cf357cd33992ca31859d5be (plain)
1
2
3
4
5
6
7
8
9
10
#include <windows.h>
#include "main.h"

int APIENTRY WinMain( HINSTANCE, HINSTANCE, LPSTR, int )
{
    if ( (LONG)GetVersion() < 0 )
        return MainA();
    else
        return MainW();
}