private static extern void Internal_unregisterResourceManifest(ResourceManifest manifest);
/// <summary>Unregisters a resource manifest previously registered with registerResourceManifest().</summary> public static void UnregisterResourceManifest(ResourceManifest manifest) { Internal_unregisterResourceManifest(manifest); }
private static extern void Internal_create(ResourceManifest managedInstance, string name);
/// <summary>Saves the resource manifest to the specified location.</summary> /// <param name="manifest">Manifest to save.</param> /// <param name="path">Full pathname of the file to save the manifest in.</param> /// <param name="relativePath"> /// If not empty, all pathnames in the manifest will be stored as if relative to this path. /// </param> public static void Save(ResourceManifest manifest, string path, string relativePath) { Internal_save(manifest, path, relativePath); }
private static extern void Internal_save(ResourceManifest manifest, string path, string relativePath);