-
Notifications
You must be signed in to change notification settings - Fork 286
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Initial splitting of source for cdvdman and cdvdfsv
Use cd_file_t type instead of cdl_file_t, and move the extra flag entry into the RPC structure Add ifdef guards on some include files Move cdvdman default settings to ifdefs
- Loading branch information
Showing
17 changed files
with
2,146 additions
and
2,027 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
/* | ||
Copyright 2009, jimmikaelkael | ||
Licenced under Academic Free License version 3.0 | ||
Review open-ps2-loader README & LICENSE files for further details. | ||
*/ | ||
|
||
#ifndef __CDVDFSV_INTERNAL__ | ||
#define __CDVDFSV_INTERNAL__ | ||
|
||
#include <intrman.h> | ||
#include <loadcore.h> | ||
#include <stdio.h> | ||
#include <sifcmd.h> | ||
#include <sifman.h> | ||
#include <sysclib.h> | ||
#include <thbase.h> | ||
#include <thevent.h> | ||
#include <thsemap.h> | ||
|
||
#include "cdvdman.h" | ||
#include "smsutils.h" | ||
|
||
extern void cdvdfsv_register_scmd_rpc(SifRpcDataQueue_t *rpc_DQ); | ||
extern void cdvdfsv_register_ncmd_rpc(SifRpcDataQueue_t *rpc_DQ); | ||
extern void cdvdfsv_register_searchfile_rpc(SifRpcDataQueue_t *rpc_DQ); | ||
extern void sysmemSendEE(void *buf, void *EE_addr, int size); | ||
extern int sceCdChangeThreadPriority(int priority); | ||
extern u8 *cdvdfsv_buf; | ||
|
||
#endif |
Oops, something went wrong.