windows-nt/Source/XPSP1/NT/shell/drts/shdrt-sfstr/td_main.cpp

21 lines
271 B
C++
Raw Normal View History

2020-09-26 03:20:57 -05:00
#include <objbase.h>
#include "sfstr.h"
#include "dbg.h"
#ifndef UNICODE
#error This has to be UNICODE
#endif
// from td_sfstr.cpp
int DoTest(int argc, wchar_t* argv[]);
extern "C"
{
int __cdecl wmain(int argc, wchar_t* argv[])
{
return !DoTest(argc, argv);
}
}