Source code of Windows XP (NT5)
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.

62 lines
1020 B

  1. /****************************************************************************
  2. Copyright (c) Microsoft Corporation 1997
  3. All rights reserved
  4. ***************************************************************************/
  5. #ifndef _SETUP_H_
  6. #define _SETUP_H_
  7. typedef struct _sSCPDATA {
  8. LPWSTR pszAttribute;
  9. LPWSTR pszValue;
  10. } SCPDATA, * LPSCPDATA;
  11. extern SCPDATA scpdata[];
  12. HRESULT
  13. BuildDirectories( void );
  14. HRESULT
  15. CreateDirectories( HWND hDlg );
  16. HRESULT
  17. CopyClientFiles( HWND hDlg );
  18. HRESULT
  19. ModifyRegistry( HWND hDlg );
  20. HRESULT
  21. StartRemoteBootServices( HWND hDlg );
  22. HRESULT
  23. CreateRemoteBootShare( HWND hDlg );
  24. HRESULT
  25. CreateRemoteBootServices( HWND hDlg );
  26. HRESULT
  27. CopyServerFiles( HWND hDlg );
  28. HRESULT
  29. CopyScreenFiles( HWND hDlg );
  30. HRESULT
  31. UpdateSIFFile( HWND hDlg );
  32. HRESULT
  33. CopyTemplateFiles( HWND hDlg );
  34. HRESULT
  35. CreateSISVolume( HWND hDlg );
  36. HRESULT
  37. CreateSCP( HWND hDlg );
  38. HRESULT
  39. RegisterDll( HWND hDlg, LPWSTR pszDLLPath );
  40. HRESULT
  41. UpdateRemoteInstallTree( );
  42. #endif // _SETUP_H_