13 lines
216 B
C++
Raw Normal View History

2001-01-01 00:00:00 +01:00
/*
Copyright (c) Microsoft Corporation
*/
#include "windows.h"
int Main(int argc, wchar_t** argv);
extern "C" int __cdecl wmain(int argc, wchar_t** argv)
{
int i = Main(argc, argv);
return i;
}