Click here to Skip to main content
15,890,123 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
Generalprivate member in base class problem Pin
kzyczynski25-May-04 3:52
kzyczynski25-May-04 3:52 
GeneralRe: private member in base class problem Pin
Maximilien25-May-04 3:55
Maximilien25-May-04 3:55 
GeneralRe: private member in base class problem Pin
kzyczynski25-May-04 5:24
kzyczynski25-May-04 5:24 
GeneralRe: private member in base class problem Pin
jmkhael25-May-04 3:59
jmkhael25-May-04 3:59 
GeneralRe: private member in base class problem Pin
Hans Ruck25-May-04 5:04
Hans Ruck25-May-04 5:04 
QuestionHow to increase print preview area Pin
Member 16246225-May-04 3:41
Member 16246225-May-04 3:41 
Questionwhat wrong with this function template? Pin
DengJW25-May-04 2:17
DengJW25-May-04 2:17 
AnswerRe: what wrong with this function template? Pin
jmkhael25-May-04 2:38
jmkhael25-May-04 2:38 
Like you said the problem is the redefinition of the max macro as a function

When you redefine the max macro as function and you dont supply a code for it the linker would nag about unresolved external(s).

either code the max function, or just use the macro (defined in stdlib.h and windef.h)as it expands to

#define max(a,b) (((a) > (b)) ? (a) : (b))

Papa


while (TRUE)
Papa.WillLove ( Bebe ) ;
AnswerRe: what wrong with this function template? Pin
ilostmyid225-May-04 2:39
professionalilostmyid225-May-04 2:39 
AnswerRe: what wrong with this function template? Pin
DengJW25-May-04 2:47
DengJW25-May-04 2:47 
GeneralRe: what wrong with this function template? Pin
ilostmyid225-May-04 2:51
professionalilostmyid225-May-04 2:51 
GeneralRe: what wrong with this function template? Pin
DengJW25-May-04 3:14
DengJW25-May-04 3:14 
GeneralRe: what wrong with this function template? Pin
ilostmyid225-May-04 3:25
professionalilostmyid225-May-04 3:25 
GeneralRe: what wrong with this function template? Pin
DengJW25-May-04 3:36
DengJW25-May-04 3:36 
GeneralRe: what wrong with this function template? Pin
ilostmyid225-May-04 3:43
professionalilostmyid225-May-04 3:43 
AnswerRe: what wrong with this function template? Pin
Henrik Stuart25-May-04 2:49
Henrik Stuart25-May-04 2:49 
GeneralRe: what wrong with this function template? Pin
DengJW25-May-04 3:06
DengJW25-May-04 3:06 
GeneralRe: what wrong with this function template? Pin
Henrik Stuart25-May-04 3:14
Henrik Stuart25-May-04 3:14 
GeneralRe: what wrong with this function template? Pin
DengJW25-May-04 3:31
DengJW25-May-04 3:31 
GeneralRe: what wrong with this function template? Pin
Henrik Stuart25-May-04 3:54
Henrik Stuart25-May-04 3:54 
AnswerI understand now. thanks,.. ilostmyid2 , henrik and papa Pin
DengJW25-May-04 4:20
DengJW25-May-04 4:20 
Questionhow to create temporary canvas Pin
Arun AC25-May-04 2:15
Arun AC25-May-04 2:15 
AnswerRe: how to create temporary canvas Pin
Anthony_Yio25-May-04 2:22
Anthony_Yio25-May-04 2:22 
GeneralRegex Pin
shiraztk25-May-04 1:24
shiraztk25-May-04 1:24 
GeneralRe: Regex Pin
Anthony_Yio25-May-04 2:18
Anthony_Yio25-May-04 2:18 

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.