Novice Question

I would just like to know exactelly what these do? I'm just opening examples in my Dev-C++ program..
And if I was to make a
#define IDM_HELPINFORMATION would it make a new toolbar with the information tab in it?

#define IDM_FILENEW 200
#define IDM_FILEOPEN 201
#define IDM_FILESAVE 202
#define IDM_FILESAVEAS 203
#define IDM_FILEPRINT 204
#define IDM_FILEPAGESETUP 205
#define IDM_FILEPRINTSETUP 206
#define IDM_FILEEXIT 207
Preprocessor directives.
Those are define directives also known as macros.

http://www.cplusplus.com/doc/tutorial/preprocessor.html

Jeff
thank you very much.
edit: nevermind.. solved.
Last edited on
Topic archived. No new replies allowed.