Leaked source code of windows server 2003
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
//*********************************************************************
//* Microsoft Windows **
//* Copyright (c) 1994-1998 Microsoft Corporation
//*********************************************************************
// HISTORY:
//
// 96/05/23 markdu Created.
// 96/05/26 markdu Update config API.
// 96/05/27 markdu Added lpIcfgGetLastInstallErrorText.
// 96/05/27 markdu Use lpIcfgInstallInetComponents and lpIcfgNeedInetComponents.
#ifndef _ICFGCALL_H_
#define _ICFGCALL_H_
// function pointer typedefs for RNA apis from rnaph.dll and rasapi32.dll
typedef DWORD (WINAPI * GETSETUPXERRORTEXT ) (DWORD dwErr,LPSTR pszErrorDesc,DWORD cbErrorDesc); typedef HRESULT (WINAPI * ICFGSETINSTALLSOURCEPATH ) (LPCSTR lpszSourcePath); typedef HRESULT (WINAPI * ICFGINSTALLSYSCOMPONENTS ) (HWND hwndParent, DWORD dwfOptions, LPBOOL lpfNeedsRestart); typedef HRESULT (WINAPI * ICFGNEEDSYSCOMPONENTS ) (DWORD dwfOptions, LPBOOL lpfNeedComponents); typedef HRESULT (WINAPI * ICFGISGLOBALDNS ) (LPBOOL lpfGlobalDNS); typedef HRESULT (WINAPI * ICFGREMOVEGLOBALDNS ) (void); typedef HRESULT (WINAPI * ICFGTURNOFFFILESHARING ) (DWORD dwfDriverType, HWND hwndParent); typedef HRESULT (WINAPI * ICFGISFILESHARINGTURNEDON ) (DWORD dwfDriverType, LPBOOL lpfSharingOn); typedef DWORD (WINAPI * ICFGGETLASTINSTALLERRORTEXT) (LPSTR lpszErrorDesc, DWORD cbErrorDesc); typedef HRESULT (WINAPI * ICFGSTARTSERVICES ) (void);
//
// These are available only on the NT icfg32.dll
//
typedef HRESULT (WINAPI * ICFGNEEDMODEM ) (DWORD dwfOptions, LPBOOL lpfNeedModem); typedef HRESULT (WINAPI * ICFGINSTALLMODEM ) (HWND hwndParent, DWORD dwfOptions, LPBOOL lpfNeedsStart);
BOOL InitConfig(HWND hWnd); VOID DeInitConfig();
//
// global function pointers for Config apis
//
extern ICFGSETINSTALLSOURCEPATH lpIcfgSetInstallSourcePath; extern ICFGINSTALLSYSCOMPONENTS lpIcfgInstallInetComponents; extern ICFGNEEDSYSCOMPONENTS lpIcfgNeedInetComponents; extern ICFGISGLOBALDNS lpIcfgIsGlobalDNS; extern ICFGREMOVEGLOBALDNS lpIcfgRemoveGlobalDNS; extern ICFGTURNOFFFILESHARING lpIcfgTurnOffFileSharing; extern ICFGISFILESHARINGTURNEDON lpIcfgIsFileSharingTurnedOn; extern ICFGGETLASTINSTALLERRORTEXT lpIcfgGetLastInstallErrorText; extern ICFGSTARTSERVICES lpIcfgStartServices; //
// These two calls are only in NT icfg32.dll
//
extern ICFGNEEDMODEM lpIcfgNeedModem; extern ICFGINSTALLMODEM lpIcfgInstallModem;
#endif // _ICFGCALL_H_
|