What are windows IPC methods

前端 未结 5 478
清酒与你
清酒与你 2021-01-13 16:32

Question: I have a dll that I can load in another program. Now the dll has access to all data/functions in the other program.

Which technology can I use that now an

5条回答
  •  南方客
    南方客 (楼主)
    2021-01-13 16:53

    COM is the de-facto standard IPC mechanism for Windows-focused applications nowadays.

    It allows access across language-barriers, solves the binary interface compatibility problem, does transparent marshalling for you and has different threading models.

    sharptooth summarized some facts nicely here.

提交回复
热议问题