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
29 lines
471 B
#pragma once
|
|
|
|
#include "windows.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
BOOL
|
|
SxsIdentDetermineManifestPlacementPathEx(
|
|
DWORD dwFlags,
|
|
PVOID pvManifestData,
|
|
SIZE_T cbLength,
|
|
PSTR pszPlacementPath,
|
|
SIZE_T *pcchPlacementPath
|
|
);
|
|
|
|
|
|
BOOL
|
|
SxsIdentDetermineManifestPlacementPath(
|
|
DWORD dwFlags,
|
|
PCWSTR pcwszManifestPath,
|
|
PSTR pszPlacementPath,
|
|
SIZE_T *cchPlacementPath
|
|
);
|
|
|
|
#ifdef __cplusplus
|
|
};
|
|
#endif
|