Update System.dll mini-doc; b type has been removed and p should be used for pointers

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@6323 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
anders_k 2013-03-28 21:25:52 +00:00
parent e173cd33a4
commit 12cb8bf7e3

View file

@ -80,13 +80,13 @@ System.dll recognises the following data types:
\b v - void (generally for return)
\b i - int (includes char, byte, short, handles, pointers and so on)
\b p - pointer (includes void*, HANDLE, HWND, UINT_PTR and so on)
\b l - long & large integer (known as int64)
\b i - int (a 32bit integer)
\b t - text, string (LPCSTR, pointer to first character)
\b l - long & large integer (also known as int64)
\b b - boolean (needs/returns 'true':'false') - by the fact this type is senseless -> usual integer can be used ('0':'1')
\b t - text, string (LPTSTR, pointer to first character)
\b k - callback. See Callback section in system.html.