wasStitchNET

Subversion Repositories:
Compare Path: Rev
With Path: Rev
?path1? @ 12  →  ?path2? @ 13
/XmlRpc/Methods/IXmlRpcStitch.cs
@@ -0,0 +1,19 @@
///////////////////////////////////////////////////////////////////////////
// Copyright (C) Wizardry and Steamworks 2017 - License: GNU GPLv3 //
// Please see: http://www.gnu.org/licenses/gpl.html for legal details, //
// rights of fair usage, the disclaimer and warranty conditions. //
///////////////////////////////////////////////////////////////////////////
 
using CookComputing.XmlRpc;
 
namespace wasStitchNET.XmlRpc.Methods
{
/// <summary>
/// The interface for Xml RPC Stich Method.
/// </summary>
public interface IXmlRpcStitch
{
[XmlRpcMethod]
void Stitch(string service, string server, string version, string path, XmlRpcStitchOptions options);
}
}
/XmlRpc/Methods/XmlRpcStitchOptions.cs
@@ -0,0 +1,18 @@
///////////////////////////////////////////////////////////////////////////
// Copyright (C) Wizardry and Steamworks 2017 - License: GNU GPLv3 //
// Please see: http://www.gnu.org/licenses/gpl.html for legal details, //
// rights of fair usage, the disclaimer and warranty conditions. //
///////////////////////////////////////////////////////////////////////////
 
namespace wasStitchNET.XmlRpc.Methods
{
public struct XmlRpcStitchOptions
{
public bool NoPatch;
public bool Clean;
public bool Force;
public bool NoVerify;
public bool DryRun;
public bool NoGeoLocation;
}
}