applied patch #2025721 - Patch for Feature Request 1961307

also closes RFE #1961307

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@5701 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
kichik 2008-08-15 18:13:21 +00:00
parent cdbef6a754
commit c69e0d5784
2 changed files with 8 additions and 2 deletions

View file

@ -520,6 +520,8 @@ SystemProc *PrepareProc(BOOL NeedForCall)
case 'I': temp2 = PAT_INT; break;
case 'l':
case 'L': temp2 = PAT_LONG; break;
case 'm':
case 'M':
case 't':
case 'T': temp2 = PAT_STRING; break;
case 'g':

View file

@ -247,8 +247,12 @@ DetailPrint $4
<td>large integer, int64</td>
</tr>
<tr>
<th>m</th>
<td>ANSI text, string. (FYI: 'm' for multibyte string or 'w' flipped over.)</td>
</tr>
<tr>
<th>t</th>
<td>text, string (pointer to first character)</td>
<td>text, string (pointer to first character). <i>Like TCHAR*, it is a Unicode string in Unicode NSIS.</i></td>
</tr>
<tr>
<th>w</th>
@ -785,4 +789,4 @@ DetailPrint "Free virtual: $9 bytes"
</div>
</body>
</html>
</html>