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.

62 lines
1.3 KiB

  1. /********************************************************************/
  2. /** Microsoft LAN Manager **/
  3. /** Copyright(c) Microsoft Corp., 1987-1990 **/
  4. /********************************************************************/
  5. /*
  6. * FILE STATUS:
  7. * 1/02/91 Created
  8. * 1/12/91 Split from Logon App, reduced to just Shell Test APP
  9. * 2/21/91 Disabled
  10. */
  11. /****************************************************************************
  12. PROGRAM: test3.cxx
  13. PURPOSE: Test module as yet undefined
  14. FUNCTIONS:
  15. test3()
  16. COMMENTS:
  17. ****************************************************************************/
  18. #ifdef CODESPEC
  19. /*START CODESPEC*/
  20. /********
  21. TEST3.CXX
  22. ********/
  23. /************
  24. end TEST3.CXX
  25. ************/
  26. /*END CODESPEC*/
  27. #endif // CODESPEC
  28. #include "apptest.hxx"
  29. /****************************************************************************
  30. FUNCTION: test3()
  31. PURPOSE: as yet undefined
  32. COMMENTS:
  33. ****************************************************************************/
  34. void test3(HWND hwndParent)
  35. {
  36. MessageBox(hwndParent,SZ("Welcome to sunny test3"),SZ("test disabled"),MB_OK);
  37. UINT rc;
  38. rc = WNetConnectionDialog ( hwndParent, 1 );
  39. MessageBox(hwndParent,SZ("Thanks for visiting test3 -- please come again!"),SZ("Test"),MB_OK);
  40. }