3
我如何獲得C++中的Windows服務的狀態?Windows服務狀態C++?
這是一個C#示例:
ServiceController sc = new ServiceController("Spooler", "Server1");
if (sc.Status == ServiceControllerStatus.Running)
{
MessageBox.Show("The service is running.");
}
但我怎麼做C++中的相同呢?
但我必須包括什麼? – Rhino 2011-03-26 12:29:04
@Rhino每個Win32函數的MSDN文檔都會告訴你,對於每個函數,你需要使用哪些包含文件。請閱讀「需求」一節中的頁面。 – 2011-03-26 12:29:51