0
0
mirror of https://github.com/zeux/pugixml.git synced 2025-01-14 09:57:57 +08:00

tests: Fix WinCE compilation

git-svn-id: https://pugixml.googlecode.com/svn/trunk@991 99668b35-9821-0410-8761-19e4c4f06640
This commit is contained in:
Arseny Kapoulkine 2014-02-26 22:37:40 +00:00
parent cfd30d903d
commit e33e1083ad

View File

@ -176,6 +176,6 @@ int main(int, char** argv)
#ifdef _WIN32_WCE
int WINAPI WinMain(HINSTANCE, HINSTANCE, LPSTR, int)
{
return main(1, "");
return main(0, NULL);
}
#endif