Dan Parent <[EMAIL PROTECTED]> writes: > The problem here appears to be that I need a unicode string in order to > call the search routine. My question now becomes, how do I create a > unicode string from js? Here's what I've found, if someone sees > something that I'm missing please let me know because right now I'm > going in circles.
Like PRUnichar/wstring, JSStrings are UCS2 (Unicode) strings. XPConnect maps between JSString and wstring, so it should be completely transparent; no explicit conversion necessary. Dan
