Ignore:
Timestamp:
Dec 21, 1999, 1:35:28 AM (26 years ago)
Author:
sandervl
Message:

service apis bugfixed & added

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/advapi32/ADVAPI32.CPP

    r2152 r2172  
    1 /* $Id: ADVAPI32.CPP,v 1.11 1999-12-20 10:12:04 sandervl Exp $ */
     1/* $Id: ADVAPI32.CPP,v 1.12 1999-12-21 00:35:28 sandervl Exp $ */
    22
    33/*
     
    20312031
    20322032
    2033 /*****************************************************************************
    2034  * Name      : SetServiceStatus
    2035  * Purpose   : The SetServiceStatus function updates the service control
    2036  *             manager's status information for the calling service.
    2037  * Parameters: SERVICE_STATUS_HANDLE sshServiceStatus  service status handle
    2038  *             LPSERVICE_STATUS      lpssServiceStatus address of status structure
    2039  * Variables :
    2040  * Result    :
    2041  * Remark    :
    2042  * Status    : UNTESTED STUB
    2043  *
    2044  * Author    : Patrick Haller [Tue, 1998/06/16 23:00]
    2045  *****************************************************************************/
    2046 
    2047 BOOL WIN32API SetServiceStatus(SERVICE_STATUS_HANDLE sshServiceStatus,
    2048                                   LPSERVICE_STATUS      lpssServiceStatus)
    2049 {
    2050   dprintf(("ADVAPI32: SetServiceStatus(%08xh,%08xh) not implemented.\n",
    2051            sshServiceStatus,
    2052            lpssServiceStatus));
    2053 
    2054   return (FALSE); /* signal failure */
    2055 }
    2056 
    2057 
    2058 
    2059 /*****************************************************************************
    2060  * Name      : StartServiceCtrlDispatcherW
    2061  * Purpose   : The StartServiceCtrlDispatcher function connects the main thread
    2062  *             of a service process to the service control manager, which causes
    2063  *             the thread to be the service control dispatcher thread for the calling process.
    2064  * Parameters: LPSERVICE_TABLE_ENTRY  lpsteServiceTable  address of service table
    2065  * Variables :
    2066  * Result    :
    2067  * Remark    :
    2068  * Status    : UNTESTED STUB
    2069  *
    2070  * Author    : Patrick Haller [Tue, 1998/06/16 23:00]
    2071  *****************************************************************************/
    2072 
    2073 #define LPSERVICE_TABLE_ENTRY LPVOID
    2074 BOOL WIN32API StartServiceCtrlDispatcherW(LPSERVICE_TABLE_ENTRY lpsteServiceTable)
    2075 {
    2076   dprintf(("ADVAPI32: StartServiceCtrlDispatcherW(%08xh) not implemented.\n",
    2077            lpsteServiceTable));
    2078 
    2079   return (FALSE); /* signal failure */
    2080 }
    2081 
    2082 
    2083 /*****************************************************************************
    2084  * Name      : StartServiceCtrlDispatcherA
    2085  * Purpose   : The StartServiceCtrlDispatcher function connects the main thread
    2086  *             of a service process to the service control manager, which causes
    2087  *             the thread to be the service control dispatcher thread for the calling process.
    2088  * Parameters: LPSERVICE_TABLE_ENTRY  lpsteServiceTable  address of service table
    2089  * Variables :
    2090  * Result    :
    2091  * Remark    :
    2092  * Status    : UNTESTED STUB
    2093  *
    2094  * Author    : Patrick Haller [Tue, 1998/06/16 23:00]
    2095  *****************************************************************************/
    2096 
    2097 BOOL WIN32API StartServiceCtrlDispatcherA(LPSERVICE_TABLE_ENTRY lpsteServiceTable)
    2098 {
    2099   dprintf(("ADVAPI32: StartServiceCtrlDispatcherA(%08xh) not implemented.\n",
    2100            lpsteServiceTable));
    2101 
    2102   return (FALSE); /* signal failure */
    2103 }
    2104 
    2105 
    2106 
     2033
Note: See TracChangeset for help on using the changeset viewer.