In general, what needs to be done to convert a 16 bit Windows program to Win32? I'm sure I'm not the only person to inherit a codebase and be stunned to find 16-bit code lurking in the corners.
The code in question is C.
|
|
|||||||
|
|
|
EDIT: As @ChrisN points out, the official guide for porting Win16 apps to Win32 is still available, and both fleshes out and adds to my points above. |
|||
|
|
|
|
The original win32 sdk had a tool that scanned source code and flagged lines that needed to be changed, but I can't remember the name of the tool. When I've had to do this in the past, I've used a brute force technique - i.e.: 1 - update makefiles or build environment to use 32 bit compiler and linker. Optionally, just create a new project in your IDE (I use Visual Studio), and add the files manually. 2 - build 3 - fix errors 4 - repeat 2&3 until done The pain of the process depends on the application you are migrating. I've converted 10,000 line programs in an hour, and 75,000 line programs in less than a week. I've also had some small utilities that I just gave up on and rewrote (mostly) from scratch. |
||
|
|
|
|
I agree with Alan that trial and error is probably the best way. Here are some good tips. |
||
|
|
|
|
Agreed that the compiler will probably catch most of the errors. Also, if you are using "near" and "far" pointers you can remove those designations -- a pointer is just a pointer in Win32. |
||
|
|
|
|
Apart from getting your build environment right, Here are few specifics you will need to address:
This is just a few of the issues I can recall. It has been over a decade since I did any Win32 porting. Once you get into it it is quite quick. Each codebase will have its own "feel" when it comes to porting which you will get used to. You will probably even find a few bugs along the way. |
|||
|
|
|
|
There's a definitive guide in the article Porting 16-Bit Code to 32-Bit Windows on MSDN. |
||
|
|