Author Topic: How do I share data in my DLL with nasm?  (Read 8348 times)

nobody

  • Guest
How do I share data in my DLL with nasm?
« on: October 02, 2009, 04:43:17 PM »
Win32 DLLs are mapped into the address space of the calling process. By default, each process using a DLL has its own instance of all the DLLs global and static variables. If my DLL needs to share data with other instances of it loaded by other applications, like:link /subsystem:windows /dll /section:.bss,S /def:dll.def dll.obj.How do I do with nasm?