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.

64 lines
1.4 KiB

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