mirror of
https://github.com/Aigor44/ncursesw-morphos.git
synced 2024-12-15 07:30:12 +08:00
15 lines
237 B
C
15 lines
237 B
C
|
#ifndef CPLUS_INTERNAL_H
|
||
|
#define CPLUS_INTERNAL_H 1
|
||
|
|
||
|
#include <ncurses_cfg.h>
|
||
|
|
||
|
#ifdef USE_RCS_IDS
|
||
|
#define MODULE_ID(id) static const char Ident[] = id;
|
||
|
#else
|
||
|
#define MODULE_ID(id) /*nothing*/
|
||
|
#endif
|
||
|
|
||
|
#define CTRL(x) ((x) & 0x1f)
|
||
|
|
||
|
#endif
|