APT:GlanceParameter: Difference between revisions

From 3dbrew
Jump to navigation Jump to search
Guiand (talk | contribs)
Steveice10 (talk | contribs)
m Clean up.
Line 9: Line 9:
|-
|-
| 1
| 1
| AppID
| [[NS_and_APT_Services#AppIDs|AppID]]
|-
|-
| 2
| 2
| Parameter buffer size, max size is 0x1000.
| Parameter Size (max is 0x1000)
|}
|}


The following is located 0x100-bytes after the beginning of the above command buffer:
The following is located 0x100-bytes after the beginning of the above command buffer:
Line 23: Line 22:
|-
|-
| 0
| 0
| <nowiki>(Size<<14) | 2</nowiki>
| <nowiki>(Parameter Size << 14) | 2</nowiki>
|-
|-
| 1
| 1
| Output parameter buffer ptr
| void*, Parameter Output
|}
|}


Line 42: Line 41:
|-
|-
| 2
| 2
| Sender AppID
| Sender [[NS_and_APT_Services#AppIDs|AppID]]
|-
|-
| 3
| 3
| Command
| [[NS_and_APT_Services#Command|Command]]
|-
|-
| 4
| 4
| Actual parameter buffer size, this is <= to the the input size.
| Actual Parameter Size
|-
|-
| 5
| 5
| Value 0x0
| 0x0
|-
|-
| 6
| 6
| Handle from the source process which set the parameters, this handle is likely used for shared memory(this can be 0x0).
| Handle Parameter
|-
| 7
| <nowiki>(Size<<14) | 2</nowiki>
|-
| 8
| Output parameter buffer ptr
|}
|}


=Description=
=Description=
This is exactly the same as [[APT:ReceiveParameter]](except for the word value prior to the output handle), except this will not clear the flag(except when responseword[3]==8 || responseword[3]==9) in NS state. Thus, the parameter data can still be loaded via [[APT:ReceiveParameter]]/APT:GlanceParameter after using this command, except when responseword[3] is the above values.
This is exactly the same as [[APT:ReceiveParameter]] (except for the word value prior to the output handle), except this will not clear the flag (except when responseword[3] == 8 || responseword[3] == 9) in NS state. Thus, the parameter data can still be loaded via [[APT:ReceiveParameter]]/[[APT:GlanceParameter]] after using this command, except when responseword[3] is one of the above values.

Revision as of 04:43, 22 November 2015

Request

Index Word Description
0 Header code [0x000E0080]
1 AppID
2 Parameter Size (max is 0x1000)

The following is located 0x100-bytes after the beginning of the above command buffer:

Index Word Description
0 (Parameter Size << 14) | 2
1 void*, Parameter Output

Response

Index Word Description
0 Header code
1 Result code
2 Sender AppID
3 Command
4 Actual Parameter Size
5 0x0
6 Handle Parameter

Description

This is exactly the same as APT:ReceiveParameter (except for the word value prior to the output handle), except this will not clear the flag (except when responseword[3] == 8 || responseword[3] == 9) in NS state. Thus, the parameter data can still be loaded via APT:ReceiveParameter/APT:GlanceParameter after using this command, except when responseword[3] is one of the above values.