Reputation: 21
i have an Vc++ application developed in VC6 . currently it supports 32 bit Operation systems. My requirement to covert this application to support 64 bit Operating systems (like windows7 , Windoes 2008 server and etc..).
what are easiest way / steps / procedure to migrate such of application?
Upvotes: 1
Views: 922
Reputation: 23629
In practice, if you use every data type as it should, there shouldn't be a problem. Typical errors that are made, are:
The page http://msdn.microsoft.com/en-us/library/aa384198%28v=VS.85%29.aspx on Microsoft's MSDN site gives a list of important things to think about when going to 64-bit.
Hope this helps.
Upvotes: 1