The following modules make it possible to use Unicode strings with DDT. The tool
replaces the calls to ANSI functions inside the EXE files' import header with calls
to UNICODE. If unicode API is not available, then function call parameters are translated
back to ANSI.
Please note that this is beta code at best, and not all DDT functionality has been tested;
so use at your own risk. I already have successfully translated an application to UNICODE using that
tool, however, some manual corrections might be necessary.
Please add the following lines of code to your application before including the modules:
------------------
replaces the calls to ANSI functions inside the EXE files' import header with calls
to UNICODE. If unicode API is not available, then function call parameters are translated
back to ANSI.
Please note that this is beta code at best, and not all DDT functionality has been tested;
so use at your own risk. I already have successfully translated an application to UNICODE using that
tool, however, some manual corrections might be necessary.
Please add the following lines of code to your application before including the modules:
Code:
MACRO DbgEnter(x) = ! nop MACRO DbgLeave(x) = ! nop MACRO Dbg(x) = ! nop %TEST_UNICODE_ANSI = 0
------------------
Comment