WindowsXP-SP1/shell/comdlg32/filemru.h
2020-09-30 16:53:49 +02:00

25 lines
580 B
C

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