Include string.h, stdlib.h and stdio.h for use of libc functions

This commit is contained in:
Anonymous Maarten 2024-01-06 12:52:49 +01:00
parent cdb69676f4
commit 61ba57e2de
3 changed files with 6 additions and 0 deletions

View File

@ -4,6 +4,8 @@
#include "mxnotificationparam.h"
#include "mxtypes.h"
#include <stdlib.h>
// VTABLE: LEGO1 0x100d6aa0
class LegoEventNotificationParam : public MxNotificationParam {
public:

View File

@ -9,6 +9,8 @@
#include "mxstring.h"
#include "mxvariabletable.h"
#include <stdio.h>
// Based on the highest dword offset (0x42c) referenced in the constructor.
// There may be other members that come after.
DECOMP_SIZE_ASSERT(LegoGameState, 0x430)

View File

@ -6,6 +6,8 @@
#include "assert.h"
#include "compat.h"
#include <string.h>
#pragma warning(disable : 4237)
#pragma warning(disable : 4786)