dxx-rebirth/d1x-rebirth/main/custom.h
Kp 12b57e84e6 Switch most in-tree http:// links to https://
For each link given as http://, verify that the site is accessible over
https:// and, if so, switch to it.  These domains were converted:

* llvm.org
* clang.llvm.org
* en.cppreference.com
* www.dxx-rebirth.com
* www.libsdl.org
* www.scons.org
2018-09-02 00:57:29 +00:00

30 lines
685 B
C

/*
* This file is part of the DXX-Rebirth project <https://www.dxx-rebirth.com/>.
* It is copyright by its individual contributors, as recorded in the
* project's Git history. See COPYING.txt at the top level for license
* terms and a link to the Git history.
*/
#ifndef _CUSTOM_H
#define _CUSTOM_H
#include "pstypes.h"
#include "piggy.h"
#ifdef __cplusplus
#include "dxxsconf.h"
#include "compiler-array.h"
/* from piggy.c */
#define DBM_FLAG_LARGE 128 // Flags added onto the flags struct in b
#define DBM_FLAG_ABM 64
extern array<int, MAX_BITMAP_FILES> GameBitmapOffset;
void load_custom_data(const d_fname &level_file);
void custom_close();
#endif
#endif