Click here to Skip to main content
15,910,130 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Export a template Pin
Jörgen Sigvardsson13-Jul-05 9:08
Jörgen Sigvardsson13-Jul-05 9:08 
GeneralRe: Export a template Pin
Bob Stanneveld13-Jul-05 20:38
Bob Stanneveld13-Jul-05 20:38 
GeneralRe: Export a template Pin
Alexander M.,13-Jul-05 22:35
Alexander M.,13-Jul-05 22:35 
GeneralIncorporating a toolbar Pin
bugDanny13-Jul-05 6:46
bugDanny13-Jul-05 6:46 
GeneralNew section with #define Pin
Alexander M.,13-Jul-05 5:20
Alexander M.,13-Jul-05 5:20 
GeneralRe: New section with #define Pin
Blake Miller13-Jul-05 8:00
Blake Miller13-Jul-05 8:00 
GeneralRe: New section with #define Pin
Alexander M.,13-Jul-05 8:15
Alexander M.,13-Jul-05 8:15 
GeneralRe: New section with #define Pin
Joe Woodbury13-Jul-05 8:15
professionalJoe Woodbury13-Jul-05 8:15 
There is no super shortcut, but you can organize these. This is an example of how I do it:

#ifndef _TEXTSEG<br />
#define _TEXTSEG(name)  ".text$" #name<br />
#endif<br />
<br />
#ifndef MY_CORE_SEG<br />
#define MY_CORE_SEG _TEXTSEG(MYS_CORE)<br />
#define MY_GDI_SEG  _TEXTSEG(MYS_GDI)<br />
#endif


Then at the top of the source files I add the following as appropriate:

#ifdef MY_GDI_SEG<br />
#pragma code_seg(MY_GDI_SEG)<br />
#endif


Anyone who thinks he has a better idea of what's good for people than people do is a swine.
- P.J. O'Rourke

General24-bit BMP to GIF or PNG in MSVC++5 Pin
TotalRecall13-Jul-05 4:36
TotalRecall13-Jul-05 4:36 
GeneralRe: 24-bit BMP to GIF or PNG in MSVC++5 Pin
basementman13-Jul-05 4:46
basementman13-Jul-05 4:46 
GeneralRe: 24-bit BMP to GIF or PNG in MSVC++5 Pin
TotalRecall13-Jul-05 5:10
TotalRecall13-Jul-05 5:10 
GeneralRe: 24-bit BMP to GIF or PNG in MSVC++5 Pin
Chris Losinger13-Jul-05 5:20
professionalChris Losinger13-Jul-05 5:20 
GeneralRe: 24-bit BMP to GIF or PNG in MSVC++5 Pin
TotalRecall13-Jul-05 5:38
TotalRecall13-Jul-05 5:38 
GeneralRe: 24-bit BMP to GIF or PNG in MSVC++5 Pin
Chris Losinger13-Jul-05 5:54
professionalChris Losinger13-Jul-05 5:54 
GeneralRe: 24-bit BMP to GIF or PNG in MSVC++5 Pin
TotalRecall13-Jul-05 6:21
TotalRecall13-Jul-05 6:21 
GeneralLZ algorithm Pin
DavidR_r13-Jul-05 4:28
DavidR_r13-Jul-05 4:28 
GeneralRe: LZ algorithm Pin
Joe Woodbury13-Jul-05 7:41
professionalJoe Woodbury13-Jul-05 7:41 
GeneralRe: LZ algorithm Pin
Chris Losinger13-Jul-05 15:05
professionalChris Losinger13-Jul-05 15:05 
GeneralRe: LZ algorithm Pin
Joe Woodbury13-Jul-05 17:49
professionalJoe Woodbury13-Jul-05 17:49 
General&quot;Debug Assertion Failed!&quot; Pin
Halawlaws13-Jul-05 4:11
Halawlaws13-Jul-05 4:11 
GeneralRe: &quot;Debug Assertion Failed!&quot; Pin
David Crow13-Jul-05 5:35
David Crow13-Jul-05 5:35 
GeneralRe: &quot;Debug Assertion Failed!&quot; Pin
bugDanny13-Jul-05 5:55
bugDanny13-Jul-05 5:55 
GeneralRe: &quot;Debug Assertion Failed!&quot; Pin
Halawlaws13-Jul-05 20:16
Halawlaws13-Jul-05 20:16 
QuestionHow to set different titles for views of the same document Pin
Yaron Abershitz13-Jul-05 4:03
Yaron Abershitz13-Jul-05 4:03 
AnswerRe: How to set different titles for views of the same document Pin
Jose Lamas Rios13-Jul-05 7:42
Jose Lamas Rios13-Jul-05 7:42 

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.