Hi,

>From: "Jatinder Singh" <jatinder.saundh / gmail.com>
>Reply-To: ruby-talk / ruby-lang.org
>To: ruby-talk / ruby-lang.org (ruby-talk ML)
>Subject: Installation of Win32-service module
>Date: Wed, 7 Jun 2006 12:34:36 +0900
>
>Hi,
>
>
>I intend to use Win32-service module to perform some operations with 
>Windows
>services.
>
>I downloaded win32-service-0.5.0 from Rubyforge and referring README, when 
>I
>try to install this module by issuing "ruby extconf.rb" which results in
>following messages on console,
>
>checking for EnumServicesStatusEx()... no
>checking for QueryServiceStatusEx()... no
>creating Makefile
<snip>
>

Above is normal message for Visual C++ 6.0.
EnumServicesStatusEx and QueryServiceStatusEx added for Visual C++ 7.0 or 
higher.

>
>I verified by running daemon_test.rb program that Win32-service was not
>installed.

After "ruby extconf.rb"
You must run "nmake install" to complete installation.
Then verify by running deamon_test.rb

Regards,

Park Heesob