added rtl support

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@5212 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
kichik 2007-07-18 20:47:58 +00:00
parent 8e1b521859
commit f1b8604bcb
6 changed files with 22 additions and 1 deletions

View file

@ -16,7 +16,8 @@ enum nsControlType
NSCTL_LISTBOX,
NSCTL_RICHEDIT,
NSCTL_RICHEDIT2,
NSCTL_STATIC
NSCTL_STATIC,
NSCTL_TREE
};
struct nsDialogCallbacks
@ -52,6 +53,8 @@ struct nsDialog
WNDPROC parentOriginalWndproc;
BOOL rtl;
struct nsDialogCallbacks callbacks;
unsigned controlCount;