Click here to Skip to main content
15,891,033 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Bypass Firewall Pin
Michael Dunn1-Aug-04 5:32
sitebuilderMichael Dunn1-Aug-04 5:32 
GeneralRe: Bypass Firewall Pin
David Crow2-Aug-04 4:17
David Crow2-Aug-04 4:17 
GeneralSolution Needed Please Pin
Abin1-Aug-04 4:46
Abin1-Aug-04 4:46 
GeneralRe: Solution Needed Please Pin
wb1-Aug-04 12:06
wb1-Aug-04 12:06 
GeneralRe: Solution Needed Please Pin
David Crow2-Aug-04 4:29
David Crow2-Aug-04 4:29 
GeneralPrecompiled headers Pin
0v3rloader1-Aug-04 1:28
0v3rloader1-Aug-04 1:28 
GeneralRe: Precompiled headers Pin
Ivan Cachicatari1-Aug-04 4:50
Ivan Cachicatari1-Aug-04 4:50 
GeneralRe: Precompiled headers Pin
Ravi Bhavnani1-Aug-04 4:54
professionalRavi Bhavnani1-Aug-04 4:54 
Precompiled headers allow you to compile a stable body of code, store the compiled state of the code in a file, and, during subsequent compilations, combine the precompiled code with code that is still under development. Each subsequent compilation is faster because the stable code does not need to be recompiled.

The first compilation (the one that creates the precompiled header file) takes a bit longer than subsequent compilations. Subsequent compilations can proceed more quickly by including the precompiled code.

You can precompile both C and C++ programs. In C++, it's common practice to separate class interface information into header files. These header files can later be included in programs that use the class. By precompiling these headers, you can reduce the time a program takes to compile.

dNimrod#X wrote:
Do I really need to have one of these beasts?
No, but I would recommend using precompiled headers to reduce build time.

See this[^] MSDN link for a nice explanation.

/ravi

My new year's resolution: 2048 x 1536
Home | Articles | Freeware | Music
ravib@ravib.com

GeneralRe: Precompiled headers Pin
Michael Dunn1-Aug-04 5:34
sitebuilderMichael Dunn1-Aug-04 5:34 
GeneralA static library && sub-projects Pin
0v3rloader1-Aug-04 1:26
0v3rloader1-Aug-04 1:26 
GeneralRe: A static library && sub-projects Pin
Ravi Bhavnani1-Aug-04 5:06
professionalRavi Bhavnani1-Aug-04 5:06 
GeneralRe: A static library && sub-projects Pin
0v3rloader1-Aug-04 5:36
0v3rloader1-Aug-04 5:36 
GeneralRe: A static library && sub-projects Pin
Ravi Bhavnani1-Aug-04 5:56
professionalRavi Bhavnani1-Aug-04 5:56 
GeneralRe: A static library && sub-projects Pin
0v3rloader1-Aug-04 6:04
0v3rloader1-Aug-04 6:04 
GeneralRe: A static library && sub-projects Pin
Ravi Bhavnani1-Aug-04 6:09
professionalRavi Bhavnani1-Aug-04 6:09 
GeneralRe: A static library && sub-projects Pin
0v3rloader1-Aug-04 6:38
0v3rloader1-Aug-04 6:38 
GeneralRe: A static library && sub-projects Pin
Ravi Bhavnani1-Aug-04 6:43
professionalRavi Bhavnani1-Aug-04 6:43 
GeneralRe: A static library && sub-projects Pin
Chris Losinger1-Aug-04 16:32
professionalChris Losinger1-Aug-04 16:32 
GeneralProcess Categories Pin
DiffBytes1-Aug-04 0:11
DiffBytes1-Aug-04 0:11 
Generalado Pin
Asha Rams31-Jul-04 22:19
Asha Rams31-Jul-04 22:19 
GeneralRe: ado Pin
Ivan Cachicatari1-Aug-04 4:58
Ivan Cachicatari1-Aug-04 4:58 
GeneralEnglish version Pin
Ravi Bhavnani1-Aug-04 5:16
professionalRavi Bhavnani1-Aug-04 5:16 
Questionhow to manipulate clipborard Pin
yingkou31-Jul-04 19:39
yingkou31-Jul-04 19:39 
GeneralAuto Scroll Pin
arunforce31-Jul-04 17:38
arunforce31-Jul-04 17:38 
GeneralRe: Auto Scroll Pin
Ravi Bhavnani31-Jul-04 17:49
professionalRavi Bhavnani31-Jul-04 17:49 

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.