This repository has been archived on 2024-12-16. You can view files and clone it, but cannot push or open issues or pull requests.
CodeBlocksPortable/WATCOM/samples/win/datactl/textmod.c

20 lines
397 B
C

#include <windows.h>
#include "ctltype.h"
BOOL ctl_text_modified( ctl_elt *elt, UINT wparam , LONG lparam )
/***********************************************************/
{
WORD id;
WORD cmd;
id = LOWORD( wparam );
cmd = GET_WM_COMMAND_CMD( wparam, lparam );
if( id == elt->control && cmd == EN_CHANGE ) {
return( TRUE );
}
return( FALSE );
}