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.

29 lines
471 B

  1. #pragma once
  2. #include "windows.h"
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. BOOL
  7. SxsIdentDetermineManifestPlacementPathEx(
  8. DWORD dwFlags,
  9. PVOID pvManifestData,
  10. SIZE_T cbLength,
  11. PSTR pszPlacementPath,
  12. SIZE_T *pcchPlacementPath
  13. );
  14. BOOL
  15. SxsIdentDetermineManifestPlacementPath(
  16. DWORD dwFlags,
  17. PCWSTR pcwszManifestPath,
  18. PSTR pszPlacementPath,
  19. SIZE_T *cchPlacementPath
  20. );
  21. #ifdef __cplusplus
  22. };
  23. #endif