mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-08-20 09:57:10 +00:00
Use standard banned list buffers in app structs
This commit is contained in:
parent
3f8374bc45
commit
c0e59f652e
|
|
@ -196,8 +196,8 @@ FEATURE_DATA;
|
||||||
// banned list
|
// banned list
|
||||||
typedef struct
|
typedef struct
|
||||||
{
|
{
|
||||||
BYTE *pBannedList;
|
std::uint8_t *pBannedList;
|
||||||
DWORD dwBytes;
|
unsigned int dwBytes;
|
||||||
}
|
}
|
||||||
BANNEDLIST;
|
BANNEDLIST;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -806,8 +806,8 @@ private:
|
||||||
|
|
||||||
std::uint32_t m_dwAdditionalModelParts[XUSER_MAX_COUNT];
|
std::uint32_t m_dwAdditionalModelParts[XUSER_MAX_COUNT];
|
||||||
|
|
||||||
BYTE *m_pBannedListFileBuffer;
|
std::uint8_t *m_pBannedListFileBuffer;
|
||||||
DWORD m_dwBannedListFileSize;
|
unsigned int m_dwBannedListFileSize;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
DWORD m_dwDLCFileSize;
|
DWORD m_dwDLCFileSize;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue