vote up 2 vote down star
1

I have a win32 library (DLL) project that was originally written in Delphi. It was used in various application and is working fine.

Now I need to use same functionality in Win CE applications. I understand that same DLL cannot be directly used. What are my options to port the code to Win CE?

flag

3 Answers

vote up 7 vote down check

Not much you can do really, Delphi does not support Windows CE.

You might try porting to Free Pascal. That supports a host of OS's including WinCE and a host of platforms including ARM.

link|flag
vote up 1 vote down

I think FreePascal/Lararus will do the job quite well and you still get to use most of your nonvisual code from delphi

link|flag
vote up 1 vote down

Maybe converting it Delphi for dotNET (nowadays called Delphi Prism) could work. I have no experience with this, though.

link|flag
Prism was updated with CF support somewhere after D2009. Don't know how practical it is. However I don't think recoding it in Prism is significantly easier than recoding it directly in C# – Marco van de Voort Nov 5 at 15:51
@Marco: That depends on the library. If it compiles with Prism without many changes, it would be much easier than recoding in C#. – dummzeuch Nov 5 at 19:57
Prism is a different dialect. – Marco van de Voort Nov 5 at 21:52
@Marco: But according to marketing (I have no personal experience with it) it is very compatible to Delphi. If it was me who was tasked with porting that library I would try Prism first. – dummzeuch Nov 6 at 7:43
Then that marketing is nonsense. Are you sure you are not mixing up Delphi.NET? E.g. the fact that Prism has "method" instead of procedure means a compatibility problem in about every other line. This is clearly visible in the examples on their site and in wikipedia – Marco van de Voort Nov 9 at 13:10

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.