2022-04-11 18:27:15 +00:00
|
|
|
{% extends "konami.html" %}
|
2021-12-29 01:41:21 +00:00
|
|
|
{% block title %}sidmgr{% endblock %}
|
2021-12-28 20:54:12 +00:00
|
|
|
{% block body %}
|
|
|
|
<h1><code>sidmgr</code></h1>
|
|
|
|
<h2 id="create"><code>sidmgr.create</code></h2>
|
|
|
|
<h3>Request:</h3>
|
2021-12-28 22:29:33 +00:00
|
|
|
<pre>{% highlight "cxml" %}<call ...>
|
|
|
|
<sidmgr method="create">
|
|
|
|
<cardtype __type="str" />
|
|
|
|
<cardid __type="str" />
|
|
|
|
<cardgid __type="str" />
|
|
|
|
<steal __type="u8" />
|
|
|
|
</sidmgr>
|
|
|
|
</call>{% endhighlight %}</pre>
|
2021-12-28 20:54:12 +00:00
|
|
|
<h3>Response:</h3>
|
2021-12-28 22:29:33 +00:00
|
|
|
<pre>{% highlight "cxml" %}<response>
|
|
|
|
<sidmgr status="??status">
|
|
|
|
<state __type="u32" />
|
|
|
|
<e_count __type="u8" />
|
|
|
|
<last __type="time" />
|
|
|
|
<locked __type="time" />
|
|
|
|
<sid __type="str" />
|
|
|
|
<cardid_status __type="u8" />
|
|
|
|
<refid __type="str" />
|
|
|
|
</sidmgr>
|
|
|
|
</response>{% endhighlight %}</pre>
|
2021-12-28 20:54:12 +00:00
|
|
|
|
|
|
|
<h2 id="open"><code>sidmgr.open</code></h2>
|
|
|
|
<h3>Request:</h3>
|
2021-12-28 22:29:33 +00:00
|
|
|
<pre>{% highlight "cxml" %}<call ...>
|
|
|
|
<sidmgr method="open" sid="" >
|
|
|
|
<pass __type="str" />
|
|
|
|
</sidmgr>
|
|
|
|
</call>{% endhighlight %}</pre>
|
2021-12-28 20:54:12 +00:00
|
|
|
<h3>Response:</h3>
|
2021-12-28 22:29:33 +00:00
|
|
|
<pre>{% highlight "cxml" %}<response>
|
|
|
|
<sidmgr status="??status">
|
|
|
|
<state __type="u32" />
|
|
|
|
<refid __type="str" />
|
|
|
|
<locked __type="time" />
|
|
|
|
</sidmgr>
|
|
|
|
</response>{% endhighlight %}</pre>
|
2021-12-28 20:54:12 +00:00
|
|
|
|
|
|
|
<h2 id="touch"><code>sidmgr.touch</code></h2>
|
|
|
|
<h3>Request:</h3>
|
2021-12-28 22:29:33 +00:00
|
|
|
<pre>{% highlight "cxml" %}<call ...>
|
|
|
|
<sidmgr method="touch" sid="" />
|
|
|
|
</call>{% endhighlight %}</pre>
|
2021-12-28 20:54:12 +00:00
|
|
|
<h3>Response:</h3>
|
2021-12-28 22:29:33 +00:00
|
|
|
<pre>{% highlight "cxml" %}<response>
|
|
|
|
<sidmgr status="??status" />
|
|
|
|
</response>{% endhighlight %}</pre>
|
2021-12-28 20:54:12 +00:00
|
|
|
|
|
|
|
<h2 id="branch"><code>sidmgr.branch</code></h2>
|
|
|
|
<h3>Request:</h3>
|
2021-12-28 22:29:33 +00:00
|
|
|
<pre>{% highlight "cxml" %}<call ...>
|
|
|
|
<sidmgr method="branch" sid="" />
|
|
|
|
</call>{% endhighlight %}</pre>
|
2021-12-28 20:54:12 +00:00
|
|
|
<h3>Response:</h3>
|
2021-12-28 22:29:33 +00:00
|
|
|
<pre>{% highlight "cxml" %}<response>
|
|
|
|
<sidmgr status="??status" />
|
|
|
|
</response>{% endhighlight %}</pre>
|
2021-12-28 20:54:12 +00:00
|
|
|
|
|
|
|
<h2 id="close"><code>sidmgr.close</code></h2>
|
|
|
|
<h3>Request:</h3>
|
2021-12-28 22:29:33 +00:00
|
|
|
<pre>{% highlight "cxml" %}<call ...>
|
|
|
|
<sidmgr method="close" sid="" />
|
|
|
|
<cause __type="u32" />
|
|
|
|
</sidmgr>
|
|
|
|
</call>{% endhighlight %}</pre>
|
2021-12-28 20:54:12 +00:00
|
|
|
<h3>Response:</h3>
|
2021-12-28 22:29:33 +00:00
|
|
|
<pre>{% highlight "cxml" %}<response>
|
|
|
|
<sidmgr status="??status" />
|
|
|
|
</response>{% endhighlight %}</pre>
|
2021-12-28 20:54:12 +00:00
|
|
|
{% endblock %}
|