Hi, I'm pretty new to windows programming, and I'm trying to learn from an example. However, I'm encountering some compiler errors that I think are caused by my strings not being made up of wide characters. (correct me, i could very easily be WAY off)
winMain() requires parameters of the LPCWSTR type, and I've tried a simple explicit cast, but that results in my title as blocks, which im sure is a result of a cast that can/should not really be made.
I guess the question is, since the strings are not coming from a variable or anywhere else, is there an easy way to make every string typed (ex "My Title") in unicode, or maybe just of the type LPCWSTR? Whats the standard way of doing this?