mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-24 22:33:41 +00:00
Fix Linux DLC install callback flow on feat/iggy-dev
This commit is contained in:
parent
00c78bccbb
commit
fc2db1b1fe
|
|
@ -136,6 +136,9 @@ DWORD C4JStorage::GetAvailableDLCCount(int iPad) { return 0; }
|
|||
C4JStorage::EDLCStatus C4JStorage::GetInstalledDLC(int iPad,
|
||||
int (*Func)(void*, int, int),
|
||||
void* lpParam) {
|
||||
if (Func) {
|
||||
Func(lpParam, 0, iPad);
|
||||
}
|
||||
return EDLC_NoInstalledDLC;
|
||||
}
|
||||
XCONTENT_DATA& C4JStorage::GetDLC(DWORD dw) { return s_dummyContentData; }
|
||||
|
|
|
|||
|
|
@ -322,8 +322,8 @@ public:
|
|||
void MountNextDLC(int iPad);
|
||||
//static int DLCReadCallback(LPVOID pParam,C4JStorage::DLC_FILE_DETAILS *pDLCData);
|
||||
void HandleDLC(DLCPack *pack);
|
||||
bool DLCInstallPending() {return false;}
|
||||
bool DLCInstallProcessCompleted() {return true;}
|
||||
bool DLCInstallPending() {return m_bDLCInstallPending;}
|
||||
bool DLCInstallProcessCompleted() {return m_bDLCInstallProcessCompleted;}
|
||||
void ClearDLCInstalled() { m_bDLCInstallProcessCompleted=false;}
|
||||
static int MarketplaceCountsCallback(void *pParam,C4JStorage::DLC_TMS_DETAILS *,int iPad);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue