2024-09-24 12:54:57 +00:00
|
|
|
#ifndef STRICT
|
|
|
|
#define STRICT
|
|
|
|
#endif
|
2024-09-29 02:04:03 +00:00
|
|
|
#include <arch.h>
|
2024-09-24 12:54:57 +00:00
|
|
|
|
|
|
|
#ifndef NOVTABLE
|
|
|
|
#define NOVTABLE _declspec(novtable)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define tabsize(x) (sizeof(x)/sizeof(*x))
|
|
|
|
|
|
|
|
#include "string.h"
|
|
|
|
#ifdef PFC_UNICODE
|
|
|
|
#include "string_unicode.h"
|
|
|
|
#endif
|
|
|
|
#include "cfg_var.h"
|
|
|
|
#include "critsec.h"
|
|
|
|
#include "grow_buf.h"
|
|
|
|
#include "mem_block.h"
|
|
|
|
#include "ptr_list.h"
|