X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/6774a5d35508ab4fff8ecacf30b29a07cf69cb78..32013b47d64e648373eed7b522f2bf2880aa2f64:/docs/latex/wx/regkey.tex diff --git a/docs/latex/wx/regkey.tex b/docs/latex/wx/regkey.tex index 6b08425ab2..20519cd3fc 100644 --- a/docs/latex/wx/regkey.tex +++ b/docs/latex/wx/regkey.tex @@ -44,6 +44,10 @@ None +\wxheading{Library} + +\helpref{wxBase}{librarieslist} + \wxheading{Example} \begin{verbatim} @@ -144,7 +148,7 @@ Gets the name of the registry key. \membersection{wxRegKey::GetFirstKey}\label{wxregkeygetfirstkey} -\func{bool}{GetKeyValue}{\param{wxString\&}{ strKeyName}, \param{long\&}{ lIndex}} +\func{bool}{GetFirstKey}{\param{wxString\&}{ strKeyName}, \param{long\&}{ lIndex}} Gets the first key. @@ -158,7 +162,7 @@ Gets the first value of this key. \membersection{wxRegKey::GetKeyInfo}\label{wxregkeygetkeyinfo} -\constfunc{bool}{Exists}{\param{size\_t *}{pnSubKeys}, \param{size\_t *}{pnValues}, \param{size\_t *}{pnMaxValueLen}} +\constfunc{bool}{GetKeyInfo}{\param{size\_t *}{pnSubKeys}, \param{size\_t *}{pnValues}, \param{size\_t *}{pnMaxValueLen}} Gets information about the key. @@ -170,6 +174,8 @@ Gets information about the key. \docparam{pnValues}{The number of values.} +\docparam{pnMaxValueLen}{The maximum length of a value.} + \membersection{wxRegKey::GetNextKey}\label{wxregkeygetnextkey} @@ -265,5 +271,10 @@ Renames a value. \func{bool}{SetValue}{\param{const wxChar *}{szValue}, \param{long}{ lValue}} -Sets the numeric value. +\func{bool}{SetValue}{\param{const wxChar *}{szValue}, \param{const wxString\&}{ strValue}} + +\func{bool}{SetValue}{\param{const wxChar *}{szValue}, \param{const wxMemoryBuffer\&}{ buf}} + +Sets the given \arg{szValue} which must be numeric, string or binary depending +on the overload used. If the value doesn't exist, it is created.