cplusplus
.com
TUTORIALS
REFERENCE
ARTICLES
FORUM
C++
Tutorials
Reference
Articles
Forum
Forum
Beginners
Windows Programming
UNIX/Linux Programming
General C++ Programming
Lounge
Jobs
Forum
Beginners
Novice Question
Novice Question
Mar 9, 2008 at 10:16pm UTC
jburridge
(9)
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
Mar 9, 2008 at 10:30pm UTC
Jeff HS
(71)
Preprocessor directives.
Those are define directives also known as macros.
http://www.cplusplus.com/doc/tutorial/preprocessor.html
Jeff
Mar 10, 2008 at 11:15am UTC
jburridge
(9)
thank you very much.
Mar 10, 2008 at 5:57pm UTC
jburridge
(9)
edit: nevermind.. solved.
Last edited on
Mar 10, 2008 at 6:30pm UTC
Topic archived. No new replies allowed.