Reputation: 4003
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
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
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