Files
Hellfire/Uisrc/UI/DIABEDIT.H
T
Justin Marshall 7806bb8ef8 Added uisrc.
2026-04-27 10:37:37 -07:00

36 lines
1.3 KiB
C++

//****************************************************************************
// DiabEdit.h
// Diablo UI custom edit ctrl
//
// By Frank Pearce
// created 10.23.96
//****************************************************************************
//****************************************************************************
//****************************************************************************
#define DIABLO_EDITCURSOR '|'
//****************************************************************************
// DiabloEdit ctrl notification messages
//****************************************************************************
#define DEN_SETFOCUS 1
#define DEN_KILLFOCUS 2
#define DEN_UPDATE 3
//****************************************************************************
// messages the parent can send to the Diablo edit
//****************************************************************************
#define DEM_CLEAR WM_USER
#define DEM_LIMITTEXT (WM_USER+1)
#define DEM_GETLIMITTEXT (WM_USER+2)
#define DEM_CURSORON (WM_USER+3)
#define DEM_RESTRICTCHARS (WM_USER+4)
//****************************************************************************
//****************************************************************************
void DiabEditRegisterClass(void);