Fixed bugs in MRU list

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@2808 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
icemank 2003-08-13 16:02:42 +00:00
parent c321d4c0df
commit 90385f9b22
5 changed files with 144 additions and 35 deletions

View file

@ -23,7 +23,8 @@
#ifndef UTILS_H
#define UTILS_H
#define MRU_SIZE 5
#define MRU_LIST_SIZE 5
#define MRU_DISPLAY_LENGTH 40
void SetTitle(HWND hwnd,char *substr);
void SetBranding(HWND hwnd);
@ -43,7 +44,10 @@ void DestroyTooltips();
void AddTip(HWND hWnd,LPSTR lpszToolTip);
void ShowDocs();
BOOL PopMRUFile(char* fname);
void PushMRUFile(char* fname);
void BuildMRUMenu(HMENU hMenu);
void LoadMRUFile(int position);
void ClearMRUList();
void SetClearMRUListMenuitemState(HMENU hMenu);
#endif