devxlogo

Changing a DOS Program to a Win32 App

Changing a DOS Program to a Win32 App

Question:
I’ve writen a program that simulates a heat circulation, and one of its functions performs an optimization processwhich uses a lot of dynamic memory. Myquestion is, can I use this function exactly in a Windows application, or must I change it? I forgot to mention that I used malloc and.. NOT new and…

Answer:
You simply need to re-compile the program as a Win32 Console Application. There should be no problem with using malloc and free instead of new and delete.

However, if your app uses DOS features such as the “dos.h” header or DOS-specific functions that are now obsolete, your code will need more substantial changes.

See also  Why ChatGPT Is So Important Today
devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist