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.

34 lines
513 B

  1. /*++
  2. Copyright (c) 2001 Microsoft Corporation
  3. Module Name:
  4. ntsetup\winnt32\dll\sxs.h
  5. Abstract:
  6. SideBySide support in the winnt32 phase of ntsetup.
  7. Author:
  8. Jay Krell (JayKrell) March 2001
  9. Revision History:
  10. --*/
  11. #pragma once
  12. struct _SXS_CHECK_LOCAL_SOURCE;
  13. typedef struct _SXS_CHECK_LOCAL_SOURCE SXS_CHECK_LOCAL_SOURCE, *PSXS_CHECK_LOCAL_SOURCE;
  14. struct _SXS_CHECK_LOCAL_SOURCE {
  15. // IN
  16. HWND ParentWindow;
  17. };
  18. BOOL
  19. SxsCheckLocalSource(
  20. PSXS_CHECK_LOCAL_SOURCE p
  21. );