ReactOS Fundraising Campaign 2012
 
€ 4,410 / € 30,000

Information | Donate

Home | Info | Community | Development | myReactOS | Contact Us

  1. Home
  2. Community
  3. Development
  4. myReactOS
  5. Fundraiser 2012

  1. Main Page
  2. Alphabetical List
  3. Data Structures
  4. Directories
  5. File List
  6. Data Fields
  7. Globals
  8. Related Pages

ReactOS Development > Doxygen

svchost.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 doxygen 1.7.6.1

ReactOS is a registered trademark or a trademark of ReactOS Foundation in the United States and other countries.