Esempio n. 1
0
        public static bool GetArtifactPaths(ArtifactID hash, out string[] paths)
        {
            bool success;
            var  p = GetArtifactPathsImpl(hash, out success);

            paths = p;
            return(success);
        }
Esempio n. 2
0
 internal static Hash128 GetArtifactStaticDependencyHash(ArtifactID artifactID) => _GetArtifactStaticDependencyHash(artifactID);
Esempio n. 3
0
 private extern static Hash128 _GetArtifactStaticDependencyHash(ArtifactID artifactId);
Esempio n. 4
0
 private extern static string[] GetArtifactPathsImpl(ArtifactID hash, out bool success);