Can 32 bit and 64 bit work together?

后端 未结 4 2157
慢半拍i
慢半拍i 2020-12-10 11:34

Can 64 bit library work in a 32 bit application? For example, my application GUI uses 32 bit Qt. And my business core is a 64 bit library. The OS is 64 bit. Can they work to

4条回答
  •  囚心锁ツ
    2020-12-10 12:10

    I'm working on an application that does exactly this. The application core is x64 (and uses Qt), but it has to communicate with some equipment, for which I only have 32bit library from manufacturer. The way I implemented it is having two applications 64bits for core and GUI, and 32bits that controls the equipment and communicates with the main applications using QSharedMemory. Both apps are based on Qt (64 and 32bits correspondingly).

提交回复
热议问题