Line 9: |
Line 9: |
| |- | | |- |
| | 1 | | | 1 |
− | | AppID | + | | [[NS_and_APT_Services#AppIDs|AppID]] |
| |- | | |- |
| | 2 | | | 2 |
− | | Parameter buffer size, max size is 0x1000(this can be zero). | + | | 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 |
− | | AppID of the process which [[APT:SendParameter|sent]] these parameters. | + | | Sender [[NS_and_APT_Services#AppIDs|AppID]] |
| |- | | |- |
| | 3 | | | 3 |
− | | Signal type | + | | [[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 0x10 | + | | 0x10 |
| |- | | |- |
| | 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 returns the current parameter data from NS state, from the source process which set the parameters. Once finished, NS will clear a flag in the NS state so that this command will return an error if this command is used again if parameters were not set again. | | This returns the current parameter data from NS state, from the source process which set the parameters. Once finished, NS will clear a flag in the NS state so that this command will return an error if this command is used again if parameters were not set again. |
− | This is called when the second [[APTU:Initialize|Initialize]] event is triggered. It returns a signal type indicating why it was triggered. | + | This is called when the second [[APT:Initialize]] event is triggered. It returns a signal type indicating why it was triggered. |
− | | |
− | {| class="wikitable" border="1"
| |
− | |-
| |
− | ! Type
| |
− | ! Description
| |
− | |-
| |
− | | 0x1
| |
− | | Application just started
| |
− | |-
| |
− | | 0x2
| |
− | | Library applet just started (triggered for library applets)
| |
− | |-
| |
− | | 0x3
| |
− | | Launched library applet finished loading (triggered for the process which launched the library applet)
| |
− | |-
| |
− | | 0xA
| |
− | | Launched library applet closed (triggered for the process which launched the library applet)
| |
− | |-
| |
− | | 0xB
| |
− | | Returned to application
| |
− | |-
| |
− | | 0xC
| |
− | | Exiting application
| |
− | |-
| |
− | | 0xF
| |
− | | ?
| |
− | |}
| |