how do i initialize an LPTSTR variable?
i'm trying to call a microsoft function
LONG QueryStringValu e(
LPCTSTR pszValueName,
LPTSTR pszValue,
ULONG* pnChars
) throw( );pszValue is supposed to get the value i want but i need to
initialize it before i pass it to QueryStringValu e, how do i initialize
it?the function (member of CRegKey) is described
here:http://msdn.microsoft.com/library/de...y/en-us/vclib/
html/_atl_cregkey.as p
----== Posted via Newsfeed.Com - Unlimited-Uncensored-Secure Usenet News==----
http://www.newsfeed.com The #1 Newsgroup Service in the World! >100,000 Newsgroups
---= 19 East/West-Coast Specialized Servers - Total Privacy via Encryption =---
i'm trying to call a microsoft function
LONG QueryStringValu e(
LPCTSTR pszValueName,
LPTSTR pszValue,
ULONG* pnChars
) throw( );pszValue is supposed to get the value i want but i need to
initialize it before i pass it to QueryStringValu e, how do i initialize
it?the function (member of CRegKey) is described
here:http://msdn.microsoft.com/library/de...y/en-us/vclib/
html/_atl_cregkey.as p
----== Posted via Newsfeed.Com - Unlimited-Uncensored-Secure Usenet News==----
http://www.newsfeed.com The #1 Newsgroup Service in the World! >100,000 Newsgroups
---= 19 East/West-Coast Specialized Servers - Total Privacy via Encryption =---
Comment