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.

86 lines
901 B

  1. /*++
  2. Copyright (c) 1990 Microsoft Corporation
  3. Module Name:
  4. mbrwin.c
  5. Abstract:
  6. Functions dealing with opening and displaying the browse window.
  7. Author:
  8. Ramon Juan San Andres (ramonsa) 06-Nov-1990
  9. Revision History:
  10. --*/
  11. #include "mbr.h"
  12. /**************************************************************************/
  13. void
  14. pascal
  15. OpenBrowse (
  16. void
  17. )
  18. /*++
  19. Routine Description:
  20. Opens a window on the browser file, empties it and makes it current
  21. Arguments:
  22. None
  23. Return Value:
  24. None.
  25. --*/
  26. {
  27. DelFile (pBrowse);
  28. pFileToTop (pBrowse);
  29. BrowseLine = 0;
  30. }
  31. /**************************************************************************/
  32. void
  33. pascal
  34. ShowBrowse (
  35. void
  36. )
  37. /*++
  38. Routine Description:
  39. Makes the browser file current.
  40. Arguments:
  41. None
  42. Return Value:
  43. None.
  44. --*/
  45. {
  46. pFileToTop (pBrowse);
  47. BrowseLine = 0;
  48. }