Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Libretro
SquirrelJME
Commits
681b01b5
Commit
681b01b5
authored
Dec 28, 2019
by
Stephanie Gawroriski
Browse files
Add base register method.
parent
78770041
Changes
1
Hide whitespace changes
Inline
Side-by-side
runt/apis/cldc-compact/cc/squirreljme/jvm/IPCManager.java
View file @
681b01b5
...
...
@@ -47,5 +47,22 @@ public final class IPCManager
{
throw
new
todo
.
TODO
();
}
/**
* Registers the given ID with the specified callback.
*
* @param __ipcid The IPC ID to listen on.
* @param __cb The callback for the IPC.
* @throws NullPointerException On null arguments.
* @since 2019/12/28
*/
public
static
final
void
register
(
int
__ipcod
,
IPCCallback
__cb
)
throws
NullPointerException
{
if
(
__cb
==
null
)
throw
new
NullPointerException
(
"NARG"
);
throw
new
todo
.
TODO
();
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment