Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
271 B

  1. #include <objbase.h>
  2. #include "sfstr.h"
  3. #include "dbg.h"
  4. #ifndef UNICODE
  5. #error This has to be UNICODE
  6. #endif
  7. // from td_sfstr.cpp
  8. int DoTest(int argc, wchar_t* argv[]);
  9. extern "C"
  10. {
  11. int __cdecl wmain(int argc, wchar_t* argv[])
  12. {
  13. return !DoTest(argc, argv);
  14. }
  15. }