fix: remove __uint64 typedef and use the "unsigned __int64" primitive
This commit is contained in:
@@ -31,8 +31,6 @@ SOFTWARE.
|
||||
#include <assert.h>
|
||||
#include <Xinput.h>
|
||||
|
||||
typedef unsigned __int64 __uint64;
|
||||
|
||||
#include "extraX64.h"
|
||||
|
||||
#endif //PCH_H
|
||||
|
||||
@@ -31,8 +31,6 @@ SOFTWARE.
|
||||
#include <assert.h>
|
||||
#include <Xinput.h>
|
||||
|
||||
typedef unsigned __int64 __uint64;
|
||||
|
||||
#include "extraX64.h"
|
||||
|
||||
#endif //PCH_H
|
||||
|
||||
@@ -248,7 +248,7 @@ int C4JStorage::GetOfferCount()
|
||||
return 0;
|
||||
}
|
||||
|
||||
DWORD C4JStorage::InstallOffer(int iOfferIDC, __uint64 *ullOfferIDA, int (*Func)(LPVOID, int, int), LPVOID lpParam, bool bTrial)
|
||||
DWORD C4JStorage::InstallOffer(int iOfferIDC, unsigned __int64 *ullOfferIDA, int (*Func)(LPVOID, int, int), LPVOID lpParam, bool bTrial)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
+1
-1
@@ -291,7 +291,7 @@ public:
|
||||
void ClearDLCOffers();
|
||||
XMARKETPLACE_CONTENTOFFER_INFO& GetOffer(DWORD dw);
|
||||
int GetOfferCount();
|
||||
DWORD InstallOffer(int iOfferIDC, __uint64* ullOfferIDA, int(*Func)(LPVOID, int, int), LPVOID lpParam, bool bTrial = false);
|
||||
DWORD InstallOffer(int iOfferIDC, unsigned __int64* ullOfferIDA, int(*Func)(LPVOID, int, int), LPVOID lpParam, bool bTrial = false);
|
||||
DWORD GetAvailableDLCCount(int iPad);
|
||||
|
||||
C4JStorage::EDLCStatus GetInstalledDLC(int iPad, int(*Func)(LPVOID, int, int), LPVOID lpParam);
|
||||
|
||||
Reference in New Issue
Block a user