mirror of
https://github.com/joel16/uofw.git
synced 2025-02-20 02:42:43 +00:00
24 lines
361 B
C
24 lines
361 B
C
/* Copyright (C) 2011, 2012 The uOFW team
|
|
See the file COPYING for copying permission.
|
|
*/
|
|
|
|
#ifndef SYSMEM_USER_H
|
|
#define SYSMEM_USER_H
|
|
|
|
#include "common_header.h"
|
|
|
|
#include "sysmem_common.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void *sceKernelGetBlockHeadAddr(SceUID uid);
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* SYSMEM_USER_H */
|