Click here to Skip to main content
15,921,454 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionQuestion Pin
messages13-Dec-06 0:28
messages13-Dec-06 0:28 
QuestionRe: Question Pin
prasad_som13-Dec-06 2:12
prasad_som13-Dec-06 2:12 
AnswerRe: Question Pin
messages13-Dec-06 19:03
messages13-Dec-06 19:03 
GeneralRe: Question Pin
prasad_som13-Dec-06 19:11
prasad_som13-Dec-06 19:11 
GeneralRe: Question Pin
messages13-Dec-06 19:27
messages13-Dec-06 19:27 
AnswerRe: Question Pin
prasad_som13-Dec-06 19:34
prasad_som13-Dec-06 19:34 
GeneralRe: Question Pin
messages13-Dec-06 19:53
messages13-Dec-06 19:53 
GeneralRe: Question Pin
prasad_som13-Dec-06 20:05
prasad_som13-Dec-06 20:05 
messages wrote:
typedef


typedef is keyword for declaring synonym for type declarations.
i.e.
typedef char TCHAR;
Now, TCHAR
can be used instead of char.
messages wrote:
what is it typedef CMap<uint,uint,uint,uint> Map; Map m.


typedef CMap<UINT,UINT,UINT,UINT> Map;

This statement indicates Map is synonym of CMap<UINT,UINT,UINT,UINT> .So statement
Map m ; is actually CMap<UINT,UINT,UINT,UINT> m;



GeneralRe: Question Pin
Laxman Auti13-Dec-06 19:20
Laxman Auti13-Dec-06 19:20 
GeneralRe: Question Pin
messages13-Dec-06 19:28
messages13-Dec-06 19:28 
AnswerRe: Question Pin
prasad_som13-Dec-06 19:42
prasad_som13-Dec-06 19:42 
GeneralRe: Question Pin
Laxman Auti13-Dec-06 19:58
Laxman Auti13-Dec-06 19:58 
QuestionTextOut & True Type Fonts Pin
PsychicSmurf13-Dec-06 0:02
PsychicSmurf13-Dec-06 0:02 
QuestionCalling an function in a DLL Pin
JJeffrey12-Dec-06 23:59
JJeffrey12-Dec-06 23:59 
QuestionRe: Calling an function in a DLL Pin
prasad_som13-Dec-06 0:14
prasad_som13-Dec-06 0:14 
AnswerRe: Calling an function in a DLL Pin
JJeffrey13-Dec-06 14:21
JJeffrey13-Dec-06 14:21 
AnswerRe: Calling an function in a DLL Pin
ShilpiP13-Dec-06 0:52
ShilpiP13-Dec-06 0:52 
QuestionSetting a menu to OWNERDRAW Pin
manustone12-Dec-06 23:24
manustone12-Dec-06 23:24 
AnswerRe: Setting a menu to OWNERDRAW Pin
Mark Salsbery13-Dec-06 6:02
Mark Salsbery13-Dec-06 6:02 
AnswerRe: Setting a menu to OWNERDRAW Pin
Hamid_RT13-Dec-06 18:18
Hamid_RT13-Dec-06 18:18 
Questionhow can i get CLSID from ProgID in managed c++ Pin
Banks K12-Dec-06 23:19
Banks K12-Dec-06 23:19 
AnswerRe: how can i get CLSID from ProgID in managed c++ Pin
Laxman Auti13-Dec-06 20:10
Laxman Auti13-Dec-06 20:10 
QuestionMFC Pin
Bravoone_200612-Dec-06 23:12
Bravoone_200612-Dec-06 23:12 
AnswerRe: MFC Pin
David Crow13-Dec-06 5:41
David Crow13-Dec-06 5:41 
AnswerRe: MFC Pin
Hamid_RT13-Dec-06 18:12
Hamid_RT13-Dec-06 18:12 

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.