Re: Asio Bindings?

2018-01-13 Thread DanielG via Digitalmars-d-learn
I'm a little late (1.5 years) to the ASIO discussion party, but I recently wrote something for myself that may be useful to others: https://github.com/dewf/DASIOClient I haven't published to DUB yet because 1) it's a pretty naive implementation and 2) I'm still very new to D, and 3) there's a

Re: Asio Bindings?

2016-07-10 Thread Ola Fosheim Grøstad via Digitalmars-d-learn
On Saturday, 11 June 2016 at 04:11:59 UTC, Joerg Joergonson wrote: Are you using any of their source code from the vst sdk? If you hand re-write any of their source code, it is yours. That could actually be considered to be a translation and a derived work. If you implement from a

Re: Asio Bindings?

2016-07-10 Thread Smoke Adams via Digitalmars-d-learn
On Wednesday, 8 June 2016 at 23:19:13 UTC, Andrej Mitrovic wrote: I do have (Steinberg) ASIO binding in D. The problem is I couldn't release the bindings. I've asked Steinberg if it was OK to release D bindings and they were strongly against it unfortunately (and this was over 3 years

Re: Asio Bindings?

2016-06-10 Thread Joerg Joergonson via Digitalmars-d-learn
On Friday, 10 June 2016 at 20:52:46 UTC, Andrej Mitrovic wrote: On 6/9/16, Joerg Joergonson via Digitalmars-d-learn wrote: [...] Just to show that I'm not full of shit, here's the e-mail chain: On 6/3/11, Andrej Mitrovic wrote:

Re: Asio Bindings?

2016-06-10 Thread Andrej Mitrovic via Digitalmars-d-learn
pers or > technologies like P/Invoke. All that is required is that the parameter > types are typed the same, and that the calling conventions match. > Calling conventions are specified in the D code by using > "extern(C)"-style syntax, and this can be used to either export a D &

Re: Asio Bindings?

2016-06-08 Thread Joerg Joergonson via Digitalmars-d-learn
On Wednesday, 8 June 2016 at 23:19:13 UTC, Andrej Mitrovic wrote: I do have (Steinberg) ASIO binding in D. The problem is I couldn't release the bindings. I've asked Steinberg if it was OK to release D bindings and they were strongly against it unfortunately (and this was over 3 years

Re: Asio Bindings?

2016-06-08 Thread Andrej Mitrovic via Digitalmars-d-learn
016 at 06:28:51 UTC, Pie? wrote: >>> On Thursday, 2 June 2016 at 04:52:50 UTC, Mithun Hunsur wrote: >>>> On Thursday, 2 June 2016 at 04:02:36 UTC, Pie? wrote: >>>>> Does anyone know if there is any Asio bindings or direct D >>>>> available

Re: Asio Bindings?

2016-06-02 Thread Pie? via Digitalmars-d-learn
On Thursday, 2 June 2016 at 11:15:59 UTC, Guillaume Piolat wrote: On Thursday, 2 June 2016 at 06:28:51 UTC, Pie? wrote: On Thursday, 2 June 2016 at 04:52:50 UTC, Mithun Hunsur wrote: On Thursday, 2 June 2016 at 04:02:36 UTC, Pie? wrote: Does anyone know if there is any Asio bindings or direct

Re: Asio Bindings?

2016-06-02 Thread Guillaume Piolat via Digitalmars-d-learn
On Thursday, 2 June 2016 at 06:28:51 UTC, Pie? wrote: On Thursday, 2 June 2016 at 04:52:50 UTC, Mithun Hunsur wrote: On Thursday, 2 June 2016 at 04:02:36 UTC, Pie? wrote: Does anyone know if there is any Asio bindings or direct D available that allows for IO? Check out vibe.d: https

Re: Asio Bindings?

2016-06-02 Thread Pie? via Digitalmars-d-learn
On Thursday, 2 June 2016 at 04:52:50 UTC, Mithun Hunsur wrote: On Thursday, 2 June 2016 at 04:02:36 UTC, Pie? wrote: Does anyone know if there is any Asio bindings or direct D available that allows for IO? Check out vibe.d: https://vibed.org/ - it includes a fairly complete implementation

Re: Asio Bindings?

2016-06-01 Thread Mithun Hunsur via Digitalmars-d-learn
On Thursday, 2 June 2016 at 04:02:36 UTC, Pie? wrote: Does anyone know if there is any Asio bindings or direct D available that allows for IO? Check out vibe.d: https://vibed.org/ - it includes a fairly complete implementation of asynchronous I/O, among other things.

Asio Bindings?

2016-06-01 Thread Pie? via Digitalmars-d-learn
Does anyone know if there is any Asio bindings or direct D available that allows for IO?