Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
同じオペレーティング システム (ex の場合は Windows7) 上の言語間で使用できるプロセス間通信機能を探しています。2 つのプロセス間でいくつかのアドレス (データ) を共有する必要があります (1 つはアセンブリで記述され、もう 1 つは C/C++ で記述されています)。 )。
ヘルプやリソースはありますか? ありがとう。
これを共有メモリと呼びます。Windows では、CreateFileMapping()/OpenFileMapping() および MapViewOfFile() API 関数を介して実装されます。