Home | Info | Community | Development | myReactOS | Contact Us
ReactOS Development > Doxygensvchost.h
Go to the documentation of this file.
00001 /* 00002 * PROJECT: ReactOS SvcHost 00003 * LICENSE: GPL - See COPYING in the top level directory 00004 * FILE: /base/services/svchost/svchost.h 00005 * PURPOSE: Provide dll service loader 00006 * PROGRAMMERS: Gregor Brunmar (gregor.brunmar@home.se) 00007 */ 00008 00009 #pragma once 00010 00011 /* INCLUDES ******************************************************************/ 00012 00013 #if 0 00014 #define _CRT_SECURE_NO_DEPRECATE 1 00015 #endif 00016 00017 #include <stdio.h> 00018 #include <winsock2.h> 00019 #include <tchar.h> 00020 00021 /* DEFINES *******************************************************************/ 00022 00023 #define CS_TIMEOUT 1000 00024 00025 typedef struct _SERVICE { 00026 PTSTR Name; 00027 HINSTANCE hServiceDll; 00028 LPSERVICE_MAIN_FUNCTION ServiceMainFunc; 00029 struct _SERVICE *Next; 00030 } SERVICE, *PSERVICE; 00031 00032 00033 /* FUNCTIONS *****************************************************************/ 00034 00035 /* EOF */ Generated on Fri May 25 2012 04:16:03 for ReactOS by
1.7.6.1
|