2000-02-17 20:38:33 +01:00
|
|
|
#ifndef _LMSVC_H
|
|
|
|
#define _LMSVC_H
|
* include/accctrl.h, aclapi.h, basetsd.h, basetyps.h, cderr.h,
cguid.h, commctrl.h, commdlg.h, cpl.h, cplext.h, custcntl.h,
dbt.h, dde.h, ddeml.h, dlgs.h, excpt.h, httpext.h, imagehlp.h,
imm.h, initguid.h, intshcut.h, ipexport.h, iphlpapi.h,
ipifcons.h, iprtrmib.h, iptypes.h, isguids.h, largeint.h, lm.h,
lmaccess.h, lmalert.h, lmapibuf.h, lmat.h, lmaudit.h,
lmbrowsr.h, lmchdev.h, lmconfig.h, lmcons.h, lmerr.h,
lmerrlog.h, lmmsg.h, lmremutl.h, lmrepl.h, lmserver.h,
lmshare.h, lmsname.h, lmstats.h, lmsvc.h, lmuse.h, lmuseflg.h,
lmwksta.h, lzexpand.h, mapi.h, mciavi.h, mcx.h, mmsystem.h,
mswsock.h, nb30.h, nddeapi.h, nspapi.h, ntdef.h, ntsecapi.h,
ntsecpkg.h, oaidl.h, objbase.h, objfwd.h, objidl.h, odbcinst.h,
ole.h, ole2.h, ole2ver.h, oleauto.h, olectl.h, olectlid.h,
oledlg.h, oleidl.h, pbt.h, prsht.h, psapi.h, rapi.h, ras.h,
raserror.h, rassapi.h, regstr.h, richedit.h, richole.h, rpc.h,
rpcdce.h, rpcdce2.h, rpcdcep.h, rpcndr.h, rpcnsi.h, rpcnsip.h,
rpcnterr.h, rpcproxy.h, schannel.h, schnlsp.h, scrnsave.h,
security.h, setupapi.h, shellapi.h, shlguid.h, shlobj.h, sql.h,
sqlext.h, sqltypes.h, sqlucode.h, sspi.h, subauth.h,
tlhelp32.h, unknwn.h, userenv.h, w32api.h, winbase.h, wincon.h,
wincrypt.h, windef.h, windows.h, windowsx.h, winerror.h,
wingdi.h, wininet.h, winioctl.h, winnetwk.h, winnls.h, winnt.h,
winperf.h, winreg.h, winresrc.h, winsock.h, winsock2.h,
winspool.h, winsvc.h, winuser.h, winver.h, ws2tcpip.h,
wsnetbs.h, wtypes.h, zmouse.h: Add #pragma GCC system_header
if __GNUC__ >= 3.
* include/mapi.h: Change header guard name to _MAPI_H for
consistency.
2002-03-09 10:04:10 +01:00
|
|
|
#if __GNUC__ >=3
|
|
|
|
#pragma GCC system_header
|
|
|
|
#endif
|
|
|
|
|
2000-02-17 20:38:33 +01:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
#include <lmsname.h>
|
2001-02-21 20:31:54 +01:00
|
|
|
#define SERVICE_DOS_ENCRYPTION TEXT("ENCRYPT")
|
2000-02-17 20:38:33 +01:00
|
|
|
#define SERVICE_UNINSTALLED 0
|
|
|
|
#define SERVICE_INSTALL_PENDING 1
|
|
|
|
#define SERVICE_UNINSTALL_PENDING 2
|
|
|
|
#define SERVICE_INSTALLED 3
|
|
|
|
#define SERVICE_INSTALL_STATE 3
|
|
|
|
#define SERVICE_PAUSE_STATE 18
|
|
|
|
#define LM20_SERVICE_ACTIVE 0
|
|
|
|
#define LM20_SERVICE_CONTINUE_PENDING 4
|
|
|
|
#define LM20_SERVICE_PAUSE_PENDING 8
|
|
|
|
#define LM20_SERVICE_PAUSED 18
|
|
|
|
#define SERVICE_NOT_UNINSTALLABLE 0
|
|
|
|
#define SERVICE_UNINSTALLABLE 16
|
|
|
|
#define SERVICE_NOT_PAUSABLE 0
|
|
|
|
#define SERVICE_PAUSABLE 32
|
|
|
|
#define SERVICE_REDIR_PAUSED 0x700
|
|
|
|
#define SERVICE_REDIR_DISK_PAUSED 256
|
|
|
|
#define SERVICE_REDIR_PRINT_PAUSED 512
|
|
|
|
#define SERVICE_REDIR_COMM_PAUSED 1024
|
|
|
|
#define SERVICE_CTRL_INTERROGATE 0
|
|
|
|
#define SERVICE_CTRL_PAUSE 1
|
|
|
|
#define SERVICE_CTRL_CONTINUE 2
|
|
|
|
#define SERVICE_CTRL_UNINSTALL 3
|
|
|
|
#define SERVICE_CTRL_REDIR_DISK 1
|
|
|
|
#define SERVICE_CTRL_REDIR_PRINT 2
|
|
|
|
#define SERVICE_CTRL_REDIR_COMM 4
|
|
|
|
#define SERVICE_IP_NO_HINT 0
|
|
|
|
#define SERVICE_CCP_NO_HINT 0
|
|
|
|
#define SERVICE_IP_QUERY_HINT 0x10000
|
|
|
|
#define SERVICE_CCP_QUERY_HINT 0x10000
|
|
|
|
#define SERVICE_IP_CHKPT_NUM 255
|
|
|
|
#define SERVICE_CCP_CHKPT_NUM 255
|
|
|
|
#define SERVICE_IP_WAIT_TIME 0xFF00
|
|
|
|
#define SERVICE_CCP_WAIT_TIME 0xFF00
|
|
|
|
#define SERVICE_IP_WAITTIME_SHIFT 8
|
|
|
|
#define SERVICE_NTIP_WAITTIME_SHIFT 12
|
|
|
|
#define UPPER_HINT_MASK 0xFF00
|
|
|
|
#define LOWER_HINT_MASK 255
|
|
|
|
#define UPPER_GET_HINT_MASK 0xFF00000
|
|
|
|
#define LOWER_GET_HINT_MASK 0xFF00
|
|
|
|
#define SERVICE_NT_MAXTIME 0xFFFF
|
|
|
|
#define SERVICE_RESRV_MASK 0x1FFFF
|
|
|
|
#define SERVICE_MAXTIME 255
|
|
|
|
#define SERVICE_BASE 3050
|
|
|
|
#define SERVICE_UIC_NORMAL 0
|
|
|
|
#define SERVICE_UIC_BADPARMVAL (SERVICE_BASE+1)
|
|
|
|
#define SERVICE_UIC_MISSPARM (SERVICE_BASE+2)
|
|
|
|
#define SERVICE_UIC_UNKPARM (SERVICE_BASE+3)
|
|
|
|
#define SERVICE_UIC_RESOURCE (SERVICE_BASE+4)
|
|
|
|
#define SERVICE_UIC_CONFIG (SERVICE_BASE+5)
|
|
|
|
#define SERVICE_UIC_SYSTEM (SERVICE_BASE+6)
|
|
|
|
#define SERVICE_UIC_INTERNAL (SERVICE_BASE+7)
|
|
|
|
#define SERVICE_UIC_AMBIGPARM (SERVICE_BASE+8)
|
|
|
|
#define SERVICE_UIC_DUPPARM (SERVICE_BASE+9)
|
|
|
|
#define SERVICE_UIC_KILL (SERVICE_BASE+10)
|
|
|
|
#define SERVICE_UIC_EXEC (SERVICE_BASE+11)
|
|
|
|
#define SERVICE_UIC_SUBSERV (SERVICE_BASE+12)
|
|
|
|
#define SERVICE_UIC_CONFLPARM (SERVICE_BASE+13)
|
|
|
|
#define SERVICE_UIC_FILE (SERVICE_BASE+14)
|
|
|
|
#define SERVICE_UIC_M_NULL 0
|
|
|
|
#define SERVICE_UIC_M_MEMORY (SERVICE_BASE+20)
|
|
|
|
#define SERVICE_UIC_M_DISK (SERVICE_BASE+21)
|
|
|
|
#define SERVICE_UIC_M_THREADS (SERVICE_BASE+22)
|
|
|
|
#define SERVICE_UIC_M_PROCESSES (SERVICE_BASE+23)
|
|
|
|
#define SERVICE_UIC_M_SECURITY (SERVICE_BASE+24)
|
|
|
|
#define SERVICE_UIC_M_LANROOT (SERVICE_BASE+25)
|
|
|
|
#define SERVICE_UIC_M_REDIR (SERVICE_BASE+26)
|
|
|
|
#define SERVICE_UIC_M_SERVER (SERVICE_BASE+27)
|
|
|
|
#define SERVICE_UIC_M_SEC_FILE_ERR (SERVICE_BASE+28)
|
|
|
|
#define SERVICE_UIC_M_FILES (SERVICE_BASE+29)
|
|
|
|
#define SERVICE_UIC_M_LOGS (SERVICE_BASE+30)
|
|
|
|
#define SERVICE_UIC_M_LANGROUP (SERVICE_BASE+31)
|
|
|
|
#define SERVICE_UIC_M_MSGNAME (SERVICE_BASE+32)
|
|
|
|
#define SERVICE_UIC_M_ANNOUNCE (SERVICE_BASE+33)
|
|
|
|
#define SERVICE_UIC_M_UAS (SERVICE_BASE+34)
|
|
|
|
#define SERVICE_UIC_M_SERVER_SEC_ERR (SERVICE_BASE+35)
|
|
|
|
#define SERVICE_UIC_M_WKSTA (SERVICE_BASE+37)
|
|
|
|
#define SERVICE_UIC_M_ERRLOG (SERVICE_BASE+38)
|
|
|
|
#define SERVICE_UIC_M_FILE_UW (SERVICE_BASE+39)
|
|
|
|
#define SERVICE_UIC_M_ADDPAK (SERVICE_BASE+40)
|
|
|
|
#define SERVICE_UIC_M_LAZY (SERVICE_BASE+41)
|
|
|
|
#define SERVICE_UIC_M_UAS_MACHINE_ACCT (SERVICE_BASE+42)
|
|
|
|
#define SERVICE_UIC_M_UAS_SERVERS_NMEMB (SERVICE_BASE+43)
|
|
|
|
#define SERVICE_UIC_M_UAS_SERVERS_NOGRP (SERVICE_BASE+44)
|
|
|
|
#define SERVICE_UIC_M_UAS_INVALID_ROLE (SERVICE_BASE+45)
|
|
|
|
#define SERVICE_UIC_M_NETLOGON_NO_DC (SERVICE_BASE+46)
|
|
|
|
#define SERVICE_UIC_M_NETLOGON_DC_CFLCT (SERVICE_BASE+47)
|
|
|
|
#define SERVICE_UIC_M_NETLOGON_AUTH (SERVICE_BASE+48)
|
|
|
|
#define SERVICE_UIC_M_UAS_PROLOG (SERVICE_BASE+49)
|
|
|
|
#define SERVICE2_BASE 5600
|
|
|
|
#define SERVICE_UIC_M_NETLOGON_MPATH (SERVICE2_BASE+0)
|
|
|
|
#define SERVICE_UIC_M_LSA_MACHINE_ACCT (SERVICE2_BASE+1)
|
|
|
|
#define SERVICE_UIC_M_DATABASE_ERROR (SERVICE2_BASE+2)
|
|
|
|
|
|
|
|
typedef struct _SERVICE_INFO_0 { LPWSTR svci0_name;} SERVICE_INFO_0,*PSERVICE_INFO_0,* LPSERVICE_INFO_0;
|
|
|
|
typedef struct _SERVICE_INFO_1 {
|
|
|
|
LPWSTR svci1_name;
|
|
|
|
DWORD svci1_status;
|
|
|
|
DWORD svci1_code;
|
|
|
|
DWORD svci1_pid;
|
|
|
|
} SERVICE_INFO_1,*PSERVICE_INFO_1,* LPSERVICE_INFO_1;
|
|
|
|
typedef struct _SERVICE_INFO_2 {
|
|
|
|
LPWSTR svci2_name;
|
|
|
|
DWORD svci2_status;
|
|
|
|
DWORD svci2_code;
|
|
|
|
DWORD svci2_pid;
|
|
|
|
LPWSTR svci2_text;
|
|
|
|
DWORD svci2_specific_error;
|
|
|
|
LPWSTR svci2_display_name;
|
|
|
|
} SERVICE_INFO_2,*PSERVICE_INFO_2,* LPSERVICE_INFO_2;
|
|
|
|
|
|
|
|
NET_API_STATUS WINAPI NetServiceControl(LPCWSTR,LPCWSTR,DWORD,DWORD,PBYTE*);
|
|
|
|
NET_API_STATUS WINAPI NetServiceEnum(LPCWSTR,DWORD,PBYTE*,DWORD,PDWORD,PDWORD,PDWORD);
|
|
|
|
NET_API_STATUS WINAPI NetServiceGetInfo(LPCWSTR,LPCWSTR,DWORD,PBYTE*);
|
|
|
|
NET_API_STATUS WINAPI NetServiceInstall(LPCWSTR,LPCWSTR,DWORD,LPCWSTR*,PBYTE*);
|
|
|
|
#define SERVICE_IP_CODE(t,n) ((long)SERVICE_IP_QUERY_HINT|(long)(n|(t<<SERVICE_IP_WAITTIME_SHIFT)))
|
|
|
|
#define SERVICE_CCP_CODE(t,n) ((long)SERVICE_CCP_QUERY_HINT|(long)(n|(t<<SERVICE_IP_WAITTIME_SHIFT)))
|
|
|
|
#define SERVICE_UIC_CODE(c,m) ((long)(((long)c<<16)|(long)(USHORT)m))
|
|
|
|
#define SERVICE_NT_CCP_CODE(t,n) (((long)SERVICE_CCP_QUERY_HINT)|((long)(n))|(((t)&LOWER_HINT_MASK)<<SERVICE_IP_WAITTIME_SHIFT)|(((t)&UPPER_HINT_MASK)<<SERVICE_NTIP_WAITTIME_SHIFT))
|
|
|
|
#define SERVICE_NT_WAIT_GET(c) ((((c)&UPPER_GET_HINT_MASK)>>SERVICE_NTIP_WAITTIME_SHIFT)|(((c)&LOWER_GET_HINT_MASK)>>SERVICE_IP_WAITTIME_SHIFT))
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif
|