RAD Studio
ContentsIndex
PreviousUpNext
Example: User-defined Messages

The following code shows two user-defined messages.

const
  MY_MYFIRSTMESSAGE = WM_APP + 400;
  MY_MYSECONDMESSAGE = WM_APP + 401;

 

#define MY_MYFIRSTMESSAGE  (WM_APP + 400)
#define MY_MYSECONDMESSAGE (WM_APP + 401)
Copyright(C) 2008 CodeGear(TM). All Rights Reserved.
What do you think about this topic? Send feedback!