summaryrefslogtreecommitdiff
path: root/server/service.h
diff options
context:
space:
mode:
authorGluzskiy Alexandr <sss@sss.chaoslab.ru>2013-02-12 21:34:09 +0200
committerGluzskiy Alexandr <sss@sss.chaoslab.ru>2013-02-12 21:34:09 +0200
commit85a13d70cc5249e2f583bb16f0914646aefe4fe6 (patch)
tree3c83832a146120a8ec8f026ab97af2698936e72c /server/service.h
parent1d41574c6e8e7bbf3705645feb429df6281ccb83 (diff)
server and shell exec module should work now
TODO: implement basic protocol support in client
Diffstat (limited to 'server/service.h')
-rw-r--r--server/service.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/server/service.h b/server/service.h
new file mode 100644
index 0000000..d27f8f3
--- /dev/null
+++ b/server/service.h
@@ -0,0 +1,27 @@
+// Copyright © 2013 sss
+//
+// This program is free software; you can redistribute it and/or
+// modify it under the terms of the GNU General Public License
+// as published by the Free Software Foundation; either version 2
+// of the License, or (at your option) any later version.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+
+#ifndef SERVICE_H
+#define SERVICE_H
+
+#include "headers.h"
+
+namespace service {
+
+extern std::list<service_info> installed_services;
+
+};
+#endif