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.

28 lines
737 B

  1. //+------------------------------------------------------------------
  2. //
  3. // File: main.cxx
  4. //
  5. // Contents: common entry point for test drivers.
  6. //
  7. //--------------------------------------------------------------------
  8. #include <tstmain.hxx>
  9. #include <cfrace.h>
  10. //+-------------------------------------------------------------------
  11. //
  12. // Function: main
  13. //
  14. // Synopsis: Entry point to EXE
  15. //
  16. // Returns: TRUE
  17. //
  18. // History: 21-Nov-92 Rickhi Created
  19. //
  20. // Just delegates to a <main> subroutine that is common for all test
  21. // drivers.
  22. //
  23. //--------------------------------------------------------------------
  24. int _cdecl main(int argc, char **argv)
  25. {
  26. return DriverMain(argc, argv, "Class Factory Race", &TestCFRace);
  27. }
  28.