mirror of
https://git.code.sf.net/p/newrpl/sources
synced 2024-11-16 19:51:25 +01:00
67 lines
1.4 KiB
C
67 lines
1.4 KiB
C
#ifndef UI_H
|
|
#define UI_H
|
|
|
|
#define UNUSED_ARGUMENT(a) (void)(a)
|
|
|
|
#ifndef NEWRPL_H
|
|
// DEFINE COMMON TYPES
|
|
#include <stdint.h>
|
|
|
|
typedef uint16_t HALFWORD;
|
|
typedef uint32_t WORD;
|
|
typedef uint8_t BYTE;
|
|
typedef WORD *WORDPTR;
|
|
typedef BYTE *BYTEPTR;
|
|
typedef int32_t BINT;
|
|
typedef uint32_t UBINT;
|
|
typedef int64_t BINT64;
|
|
typedef uint64_t UBINT64;
|
|
#if defined(__LP64__) || defined(_WIN64)
|
|
typedef uint64_t PTR2NUMBER;
|
|
#else
|
|
typedef uint32_t PTR2NUMBER;
|
|
#endif
|
|
|
|
|
|
#endif
|
|
|
|
#define __SYSTEM_GLOBAL__ __attribute__((section (".system_globals")))
|
|
|
|
|
|
#ifndef _GGL_H
|
|
#include <ggl.h>
|
|
#endif
|
|
#ifndef UTF8LIB_H
|
|
#include <utf8lib.h>
|
|
#endif
|
|
#ifndef _HAL_API_H
|
|
#include <hal_api.h>
|
|
#endif
|
|
|
|
extern BINT ui_visibleline,ui_nlines;
|
|
extern BINT ui_currentline,ui_prevline;
|
|
extern BINT ui_islinemodified;
|
|
extern BINT ui_cursorx,ui_cursoroffset;
|
|
extern BINT ui_visiblex;
|
|
|
|
extern void uiEnsureCursorVisible();
|
|
extern void uiModifyLine();
|
|
extern void uiExtractLine();
|
|
extern BYTEPTR uiFindNumberStart();
|
|
extern WORDPTR uiGetCmdLineText();
|
|
extern void uiOpenCmdLine(BINT mode);
|
|
extern void uiCloseCmdLine();
|
|
extern void uiInsertCharacters(BYTEPTR string);
|
|
extern void uiInsertCharactersN(BYTEPTR string,BYTEPTR end);
|
|
extern void uiRemoveCharacters(BINT length);
|
|
|
|
extern void uiSeparateToken();
|
|
|
|
extern void uiMoveCursor(BINT offset);
|
|
extern void uiCursorLeft(BINT nchars);
|
|
extern void uiCursorRight(BINT nchars);
|
|
|
|
|
|
|
|
|
|
#endif // UI_H
|