Leaked source code of windows server 2003
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.

24 lines
580 B

  1. /*++
  2. Copyright (c) 1990-1998, Microsoft Corporation All rights reserved.
  3. Module Name:
  4. filemru.cpp
  5. Abstract:
  6. This module contains the functions for implementing file mru
  7. in file open and file save dialog boxes
  8. Revision History:
  9. 01/22/98 arulk created
  10. --*/
  11. #define MAX_MRU 25
  12. BOOL LoadMRU(LPCTSTR pszFilter, HWND hwndCombo, int nMax);
  13. BOOL AddToMRU(LPOPENFILENAME lpOFN);
  14. BOOL GetPathFromLastVisitedMRU(LPTSTR pszDir, DWORD cchDir);
  15. BOOL AddToLastVisitedMRU(LPCTSTR pszFile, int nFileOffset);