Re: Examples of Windows services in D?

2014-08-09 Thread Tyler Jensen via Digitalmars-d-learn
Found this: https://github.com/alvatar/snippets/blob/086f1714927df1338ac36b3633a3a91034a8347c/d/scrapple/bevutils/ServiceBase.d Will be exploring it to see if I can make it work. On Saturday, 9 August 2014 at 05:08:40 UTC, Tyler Jensen wrote: I am very interested to find a good example for D2

Re: Examples of Windows services in D?

2014-08-08 Thread Tyler Jensen via Digitalmars-d-learn
I am very interested to find a good example for D2 of a Windows Service implementation. Can you point me to one? On Saturday, 7 September 2013 at 13:57:07 UTC, HeiHon wrote: On Thursday, 23 February 2012 at 01:33:10 UTC, DNewbie wrote: Here is a simple service in D

Re: Examples of Windows services in D?

2012-02-23 Thread Graham Fawcett
On Thu, 23 Feb 2012 02:33:04 +0100, DNewbie wrote: Here is a simple service in D http://my.opera.com/run3/blog/2012/02/23/windows-services-in-d It's basically c translated to d. Hey, thanks for this. I ended up doing the same thing (translating an existing service from C++). But my code is

Re: Examples of Windows services in D?

2012-02-22 Thread DNewbie
Here is a simple service in D http://my.opera.com/run3/blog/2012/02/23/windows-services-in-d It's basically c translated to d. On Tue, Feb 21, 2012, at 03:08 PM, Graham Fawcett wrote: Hi folks, I've got a Windows service that I'd like to write in D, if possible. I see that Andrej Mitrovic

Examples of Windows services in D?

2012-02-21 Thread Graham Fawcett
Hi folks, I've got a Windows service that I'd like to write in D, if possible. I see that Andrej Mitrovic has provided a binding for the relevant parts of the Windows API (thanks!): https://github.com/AndrejMitrovic/DWinProgramming/blob/master/win32/ winsvc.d Has anyone used this (or another

Re: Examples of Windows services in D?

2012-02-21 Thread Andrej Mitrovic
N, it wasn't me. I keep having to tell this to people, it was taken from http://www.dsource.org/projects/bindings/wiki/WindowsApi but it often doesn't compile with the latest compiler version so I keep it updated inside my project.

Re: Examples of Windows services in D?

2012-02-21 Thread Graham Fawcett
On Tue, 21 Feb 2012 17:35:34 +0100, Andrej Mitrovic wrote: N, it wasn't me. I keep having to tell this to people, it was taken from http://www.dsource.org/projects/bindings/wiki/WindowsApi but it often doesn't compile with the latest compiler version so I keep it updated inside my