I am going to make a device driver for 64 bit platform (i.e. Win7) and I would also like to expose device APIs in DLLs which could be distributed to users writing their applications.
The question is, how could I build such DLLs both for 32bit and 64bit applications? The problem here is actually only about 32 bit one.
could I just write DLL and compile it in 32 as well as 64bit? Or do I really need some IPC to wrap 64bit dll so that 32bit application can indirectly invoke device driver?