mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-05-10 08:08:18 +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
|
||||
typedef struct
|
||||
{
|
||||
BYTE *pBannedList;
|
||||
DWORD dwBytes;
|
||||
std::uint8_t *pBannedList;
|
||||
unsigned int dwBytes;
|
||||
}
|
||||
BANNEDLIST;
|
||||
|
||||
|
|
|
|||
|
|
@ -806,8 +806,8 @@ private:
|
|||
|
||||
std::uint32_t m_dwAdditionalModelParts[XUSER_MAX_COUNT];
|
||||
|
||||
BYTE *m_pBannedListFileBuffer;
|
||||
DWORD m_dwBannedListFileSize;
|
||||
std::uint8_t *m_pBannedListFileBuffer;
|
||||
unsigned int m_dwBannedListFileSize;
|
||||
|
||||
public:
|
||||
DWORD m_dwDLCFileSize;
|
||||
|
|
|
|||
Loading…
Reference in a new issue