Since the sdk menu functions GetMenu, CreatePopupMenu, InsertMenuA , AppendMenuA etc are not working properly in 6.2 Version. I think Unicode version of above functions may works fine in version 6.2.
Asked
Active
Viewed 125 times
0
-
Any Windows SDK function ending with an 'A' should be replaced with its UNICODE counterpart ending in 'W' , if running TeamDeveloper v5 onwards. Note that the parameter list may be different. – Steve Leighton Aug 17 '17 at 21:19
1 Answers
0
Any Windows SDK function ending with an 'A' should be replaced with its UNICODE counterpart ending in 'W' , if running TeamDeveloper v5 onwards. Note that the parameter list may be different. You don't have to 'create' them, - they already exist , so just need replacing.

Steve Leighton
- 790
- 5
- 15
-
Go here : http://samples.tdcommunity.net/index.php?dir=WinApi32/ to get a full list of Win32 UNICODE version of Win API's. Specifically, download 'WinApi_Declarations_v110.zip' – Steve Leighton Mar 22 '18 at 09:27