mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-15 11:18:36 +12:00
Fix Travis compiling
This commit is contained in:
parent
80b544aa78
commit
2e3113b5f2
3 changed files with 19 additions and 17 deletions
|
@ -12,22 +12,6 @@
|
||||||
|
|
||||||
extern Module sceNp;
|
extern Module sceNp;
|
||||||
|
|
||||||
struct sceNpInternal
|
|
||||||
{
|
|
||||||
bool m_bSceNpInitialized;
|
|
||||||
bool m_bScoreInitialized;
|
|
||||||
bool m_bLookupInitialized;
|
|
||||||
bool m_bSceNpUtilBandwidthTestInitialized;
|
|
||||||
|
|
||||||
sceNpInternal()
|
|
||||||
: m_bSceNpInitialized(false),
|
|
||||||
m_bScoreInitialized(false),
|
|
||||||
m_bLookupInitialized(false),
|
|
||||||
m_bSceNpUtilBandwidthTestInitialized(false)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
sceNpInternal sceNpInstance;
|
sceNpInternal sceNpInstance;
|
||||||
|
|
||||||
s32 sceNpInit(u32 poolsize, vm::ptr<u32> poolptr)
|
s32 sceNpInit(u32 poolsize, vm::ptr<u32> poolptr)
|
||||||
|
|
|
@ -219,6 +219,24 @@ enum
|
||||||
|
|
||||||
using SceNpBasicEventHandler = func_def<s32(s32 event, s32 retCode, u32 reqId, vm::ptr<void> arg)>;
|
using SceNpBasicEventHandler = func_def<s32(s32 event, s32 retCode, u32 reqId, vm::ptr<void> arg)>;
|
||||||
|
|
||||||
|
struct sceNpInternal
|
||||||
|
{
|
||||||
|
bool m_bSceNpInitialized;
|
||||||
|
bool m_bScoreInitialized;
|
||||||
|
bool m_bLookupInitialized;
|
||||||
|
bool m_bSceNpUtilBandwidthTestInitialized;
|
||||||
|
|
||||||
|
sceNpInternal()
|
||||||
|
: m_bSceNpInitialized(false),
|
||||||
|
m_bScoreInitialized(false),
|
||||||
|
m_bLookupInitialized(false),
|
||||||
|
m_bSceNpUtilBandwidthTestInitialized(false)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
extern sceNpInternal sceNpInstance;
|
||||||
|
|
||||||
// NP Manager Utility statuses
|
// NP Manager Utility statuses
|
||||||
enum
|
enum
|
||||||
{
|
{
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
#include "Emu/Memory/Memory.h"
|
#include "Emu/Memory/Memory.h"
|
||||||
#include "Emu/SysCalls/Modules.h"
|
#include "Emu/SysCalls/Modules.h"
|
||||||
|
|
||||||
#include "sceNp.cpp"
|
#include "sceNp.h"
|
||||||
|
|
||||||
extern Module sceNp2;
|
extern Module sceNp2;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue