Forum Navigation
Win32 bindings
Posted: 01/26/08 07:43:22While working on DWT-Windows, i encountered problems with the tango.sys.win32 package. I have no expirience with win32 developemnt so i might miss something essential :)
1.) There is this Ansi vs. Unicode thing in windows. Many structs are dependending on the decisions on which platform an application runs. So I think this is a compile time decision. Structs exist with the naming schema xxxA and xxxW. At compile time, depending on version statements an alias should be created.
Shall i try to change that, so that there is version(ANSI) statement like this:
version( ANSI ){ alias LOGFONTA LOGFONT; } else{ alias LOGFONTW LOGFONT; }2.) I encounter not declared functions (AddFontResourceExW, AddFontResourceExA).
Shall I try to add them to tango?3.) DWT uses also gdiplus.lib, shall i try to add that binding to tango? module name?
Frank












