From 9f9cfbdced2d4afb863dbe7dea47be315dd5609b Mon Sep 17 00:00:00 2001 From: Igors Homjakovs Date: Wed, 20 May 2015 11:31:57 +0000 Subject: ...G...... [ZBXNEXT-1368] added Windows service discovery --- include/sysinfo.h | 1 + 1 file changed, 1 insertion(+) (limited to 'include/sysinfo.h') diff --git a/include/sysinfo.h b/include/sysinfo.h index 461633ac505..81a4b2916b9 100644 --- a/include/sysinfo.h +++ b/include/sysinfo.h @@ -255,6 +255,7 @@ int USER_PERF_COUNTER(AGENT_REQUEST *request, AGENT_RESULT *result); int PERF_COUNTER(AGENT_REQUEST *request, AGENT_RESULT *result); int SERVICE_STATE(AGENT_REQUEST *request, AGENT_RESULT *result); int SERVICES(AGENT_REQUEST *request, AGENT_RESULT *result); +int SERVICE_DISCOVERY(AGENT_REQUEST *request, AGENT_RESULT *result); int PROC_INFO(AGENT_REQUEST *request, AGENT_RESULT *result); int NET_IF_LIST(AGENT_REQUEST *request, AGENT_RESULT *result); int WMI_GET(AGENT_REQUEST *request, AGENT_RESULT *result); -- cgit v1.2.3 From 39503bb56c8513c4ff52ee10c42f167bca412039 Mon Sep 17 00:00:00 2001 From: Igors Homjakovs Date: Fri, 22 May 2015 10:17:41 +0000 Subject: ...G...... [ZBXNEXT-1368] added service.info item --- include/sysinfo.h | 1 + 1 file changed, 1 insertion(+) (limited to 'include/sysinfo.h') diff --git a/include/sysinfo.h b/include/sysinfo.h index 81a4b2916b9..0e713b45722 100644 --- a/include/sysinfo.h +++ b/include/sysinfo.h @@ -256,6 +256,7 @@ int PERF_COUNTER(AGENT_REQUEST *request, AGENT_RESULT *result); int SERVICE_STATE(AGENT_REQUEST *request, AGENT_RESULT *result); int SERVICES(AGENT_REQUEST *request, AGENT_RESULT *result); int SERVICE_DISCOVERY(AGENT_REQUEST *request, AGENT_RESULT *result); +int SERVICE_INFO(AGENT_REQUEST *request, AGENT_RESULT *result); int PROC_INFO(AGENT_REQUEST *request, AGENT_RESULT *result); int NET_IF_LIST(AGENT_REQUEST *request, AGENT_RESULT *result); int WMI_GET(AGENT_REQUEST *request, AGENT_RESULT *result); -- cgit v1.2.3 From 692d3a10c7c9066fc855faf1957f6bf57ec59e81 Mon Sep 17 00:00:00 2001 From: Aleksandrs Saveljevs Date: Wed, 27 May 2015 12:39:56 +0000 Subject: ...G...... [ZBXNEXT-1368] arranged service functions alphabetically --- include/sysinfo.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include/sysinfo.h') diff --git a/include/sysinfo.h b/include/sysinfo.h index 0e713b45722..c8401a0bab0 100644 --- a/include/sysinfo.h +++ b/include/sysinfo.h @@ -253,10 +253,10 @@ int VM_MEMORY_SIZE(AGENT_REQUEST *request, AGENT_RESULT *result); #ifdef _WINDOWS int USER_PERF_COUNTER(AGENT_REQUEST *request, AGENT_RESULT *result); int PERF_COUNTER(AGENT_REQUEST *request, AGENT_RESULT *result); -int SERVICE_STATE(AGENT_REQUEST *request, AGENT_RESULT *result); -int SERVICES(AGENT_REQUEST *request, AGENT_RESULT *result); int SERVICE_DISCOVERY(AGENT_REQUEST *request, AGENT_RESULT *result); int SERVICE_INFO(AGENT_REQUEST *request, AGENT_RESULT *result); +int SERVICE_STATE(AGENT_REQUEST *request, AGENT_RESULT *result); +int SERVICES(AGENT_REQUEST *request, AGENT_RESULT *result); int PROC_INFO(AGENT_REQUEST *request, AGENT_RESULT *result); int NET_IF_LIST(AGENT_REQUEST *request, AGENT_RESULT *result); int WMI_GET(AGENT_REQUEST *request, AGENT_RESULT *result); -- cgit v1.2.3