Rhubarb
Rhubarb

Reputation: 4003

Is there a VisualStudio project template for native C++ Win32 services?

I know there is one for .NET based services, even one for managed C++, but I don't see one for native unmanaged C++ Win32 services. Anyone know of any 3rd party templates?

Upvotes: 3

Views: 960

Answers (2)

Hans Passant
Hans Passant

Reputation: 942010

Just use the regular Win32 Console Application template. A service doesn't have any special compile or link settings, just special code. The SDK docs mention this here...

Upvotes: 2

Phil Rykoff
Phil Rykoff

Reputation: 12097

Here you have a complete sample on msdn, consisting of four files:

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

Upvotes: 2

Related Questions