29

Anyone know of a Linux/D-Bus sort of mechanism for Windows?

Thanks

sharkin
  • 12,162
  • 24
  • 86
  • 122

3 Answers3

36

Choose your poison:

http://msdn.microsoft.com/en-us/library/aa365574%28VS.85%29.aspx

The following IPC mechanisms are supported by Windows:

  • Clipboard
  • COM
  • Data Copy
  • DDE
  • File Mapping
  • Mailslots
  • Pipes
  • RPC
  • Windows Sockets

The closest to DBus is COM.

artificialidiot
  • 5,309
  • 29
  • 27
31

The reference D-Bus implementation natively supports Windows. Previously, the WinDBus project could be used. There is no need for equivalents if you want to use D-Bus.

Tritium21
  • 2,845
  • 18
  • 27
Ioan
  • 2,382
  • 18
  • 32
  • 2
    Does it really support well enough to be used for production software? The link in your answer states "a port to Windows is in progress." (as of 2020/02/20) – Étienne Feb 20 '20 at 08:42
  • They are making progress! Today on the same link I can read: `the port to Windows is mostly finished.` – Kiruahxh Jul 12 '22 at 15:17
9

windbus is now part of the official DBus releases, see: https://www.freedesktop.org/wiki/Software/dbus/#windowsport

mirh
  • 514
  • 8
  • 14
user3587151
  • 99
  • 1
  • 1