Can you give brief explanation about what you want to do?
I have a software called EzCad (that do laser operation).
I want to write a flutter UI app (on 64 bit os) and also a 32 bit background service, to be able to control my laser physical product via them
.
In fact, i dont want use EzCad.exe and i want to use its dll files to be able to run the below tasks:
-initialize laser hardware
- mark a box on it
- and finally do laser operation.
Each of the above tasks have their own corresponding function in dll file.
So i was thinking that write the below scenario:
write a 32 bit background app (via dart or java or c++) to communicate with dll and finally make connection from my flutter app with this 32 bit background app via socket.
In summary:
Flutter app: A
my 32 bit background service: B
Dll file: C
A sends command to B
B sends command to C
C do laser operations finally