Click here to Skip to main content
15,898,571 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Package VC++ as static standalone Pin
Cedric Moonen14-Apr-05 20:45
Cedric Moonen14-Apr-05 20:45 
GeneralRe: Package VC++ as static standalone Pin
ng kok chuan17-Apr-05 14:48
ng kok chuan17-Apr-05 14:48 
Generaluser defined messages Pin
namaskaaram13-Apr-05 22:52
namaskaaram13-Apr-05 22:52 
GeneralRe: user defined messages Pin
binh.pham13-Apr-05 23:09
binh.pham13-Apr-05 23:09 
GeneralClickety police Pin
Trollslayer13-Apr-05 23:17
mentorTrollslayer13-Apr-05 23:17 
GeneralRe: user defined messages Pin
namaskaaram14-Apr-05 1:37
namaskaaram14-Apr-05 1:37 
GeneralRe: user defined messages Pin
David Crow14-Apr-05 2:43
David Crow14-Apr-05 2:43 
Generalsend messages to other windows Pin
cuongnguyennnn13-Apr-05 22:34
susscuongnguyennnn13-Apr-05 22:34 
GeneralRe: send messages to other windows Pin
ThatsAlok13-Apr-05 23:34
ThatsAlok13-Apr-05 23:34 
GeneralRe: send messages to other windows Pin
mark novak14-Apr-05 0:47
mark novak14-Apr-05 0:47 
GeneralRe: send messages to other windows Pin
CuongNguyennn14-Apr-05 9:05
sussCuongNguyennn14-Apr-05 9:05 
GeneralRe: send messages to other windows Pin
mark novak14-Apr-05 11:48
mark novak14-Apr-05 11:48 
GeneralRe: send messages to other windows Pin
ThatsAlok14-Apr-05 19:28
ThatsAlok14-Apr-05 19:28 
GeneralAn error about RTC_VIDEO_DEVICE Pin
yeetins13-Apr-05 21:32
yeetins13-Apr-05 21:32 
GeneralRe: An error about RTC_VIDEO_DEVICE Pin
Trollslayer13-Apr-05 23:22
mentorTrollslayer13-Apr-05 23:22 
GeneralRe: An error about RTC_VIDEO_DEVICE Pin
yeetins14-Apr-05 0:20
yeetins14-Apr-05 0:20 
GeneralRemote communication Pin
itkid13-Apr-05 20:00
itkid13-Apr-05 20:00 
GeneralRe: Remote communication Pin
22491713-Apr-05 21:15
22491713-Apr-05 21:15 
GeneralRe: Remote communication Pin
itkid13-Apr-05 22:31
itkid13-Apr-05 22:31 
GeneralRe: Remote communication Pin
ThatsAlok13-Apr-05 23:55
ThatsAlok13-Apr-05 23:55 
GeneralRe: Remote communication Pin
itkid14-Apr-05 0:23
itkid14-Apr-05 0:23 
GeneralRe: Remote communication Pin
ThatsAlok14-Apr-05 1:30
ThatsAlok14-Apr-05 1:30 
GeneralInclusion of header file in project Pin
swarnamanoo13-Apr-05 19:27
swarnamanoo13-Apr-05 19:27 
GeneralRe: Inclusion of header file in project Pin
mark novak14-Apr-05 0:56
mark novak14-Apr-05 0:56 
You can include files from all over the place. Observe:

// if you want to go up, use ..
#include "../secret.h"

// if you need to go down, use /
#include "/mission/command/base.h"

You could just make one huge header file which includes all the header files. Most people only do this with header files that rarely change because if you change say, base.h and everyone includes base.h then they all have to recompile if the change was drastic enough. Changing the size of an object or type of a function will do it.
Questionread binary? Pin
chal_adiera13-Apr-05 19:23
chal_adiera13-Apr-05 19:23 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.