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.
14 lines
470 B
14 lines
470 B
|
|
#ifndef _RECDOCS_H_
|
|
#define _RECDOCS_H_
|
|
|
|
STDAPI CreateRecentMRUList(IMruDataList **ppmru);
|
|
STDAPI RecentDocs_Enum(IMruDataList *pmru, int iItem, LPITEMIDLIST *ppidl);
|
|
STDAPI_(void) AddToRecentDocs( LPCITEMIDLIST pidl, LPCTSTR lpszPath );
|
|
STDAPI CTaskAddDoc_Create(HANDLE hMem, DWORD dwProcId, IRunnableTask **pptask);
|
|
STDAPI RecentDocs_GetDisplayName(LPCITEMIDLIST pidl, LPTSTR pszName, DWORD cchName);
|
|
|
|
#define MAXRECENTDOCS 15
|
|
|
|
#endif // _RECDOCS_H_
|
|
|