mirror of
https://github.com/joel16/uofw.git
synced 2024-11-23 11:39:50 +00:00
26 lines
589 B
C
26 lines
589 B
C
/* Copyright (C) 2011, 2012 The uOFW team
|
|
See the file COPYING for copying permission.
|
|
*/
|
|
|
|
#include "common_header.h"
|
|
|
|
typedef struct {
|
|
int size;
|
|
int (*ops[])();
|
|
} SceKernelDeci2Ops;
|
|
|
|
int sceKernelDeci2pRegisterOperations(void *op);
|
|
void *sceKernelDeci2pReferOperations();
|
|
|
|
void *sceKernelSm1ReferOperations();
|
|
|
|
void Kprintf(const char *format, ...);
|
|
int sceKernelDipsw(int);
|
|
|
|
int sceKernelIsToolMode(void);
|
|
|
|
int sceKernelDebugWrite(SceUID fd, const void *data, SceSize size);
|
|
int sceKernelDebugRead(SceUID fd, const void *data, SceSize size);
|
|
int sceKernelDebugEcho(void);
|
|
|