repo.or.cz
/
ps4-sdk.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Module example
[ps4-sdk.git]
/
source
/
unknown.c
blob
911db7124046ca8842fa25213fc8163515f019ec
1
#include
"syscall.h"
2
3
#include
"unknown.h"
4
5
int
unknownResourceCreate
(
const char
*
name
) {
6
return
syscall
(
574
,
name
);
7
}
8
9
int
unknownResourceDestroy
(
int
unknownResource
) {
10
return
syscall
(
575
,
unknownResource
);
11
}