blob: 18d6ffdcfc5e71936114e644f949bcbbd6acb031 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#ifndef __GLOBALS_H__
# define __GLOBALS_H__
#ifdef DEBUG
#define _CRTDBG_MAP_ALLOC
#include <stdlib.h>
#include <crtdbg.h>
#endif
#include <windows.h>
#include <newpluginapi.h>
#include <m_system.h>
#include <m_utils.h>
#include <utf8_helpers.h>
#define MAX_REGS(_X_) ( sizeof(_X_) / sizeof(_X_[0]) )
#endif // __GLOBALS_H__
|