Click here to Skip to main content
15,901,205 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Recognize normal text on the screen Pin
yytg8-Apr-08 2:49
yytg8-Apr-08 2:49 
GeneralRe: Recognize normal text on the screen Pin
josip cagalj8-Apr-08 2:57
josip cagalj8-Apr-08 2:57 
Questionwhere is _ATL_SIMPLEMAPENTRY defined? Pin
George_George7-Apr-08 4:39
George_George7-Apr-08 4:39 
AnswerRe: where is _ATL_SIMPLEMAPENTRY defined? Pin
CPallini7-Apr-08 4:58
mveCPallini7-Apr-08 4:58 
GeneralRe: where is _ATL_SIMPLEMAPENTRY defined? Pin
George_George7-Apr-08 15:01
George_George7-Apr-08 15:01 
GeneralRe: where is _ATL_SIMPLEMAPENTRY defined? Pin
ThatsAlok7-Apr-08 19:24
ThatsAlok7-Apr-08 19:24 
GeneralRe: where is _ATL_SIMPLEMAPENTRY defined? Pin
George_George7-Apr-08 19:43
George_George7-Apr-08 19:43 
GeneralRe: where is _ATL_SIMPLEMAPENTRY defined? Pin
CPallini7-Apr-08 22:12
mveCPallini7-Apr-08 22:12 
The above is typedef, i.e. an alias for a type representing a function having the given prototype. Nothing to do with pointers.

To make things a bit clearer:
typedef int (MYFUN) (int x);
int square(int x) {return x*x;}

void main()
{
  MYFUN  p = square; // error C2072: 'p' : initialization of a function	
  MYFUN *p = square; // this is OK.
}

Smile | :)

If the Lord God Almighty had consulted me before embarking upon the Creation, I would have recommended something simpler.
-- Alfonso the Wise, 13th Century King of Castile.

This is going on my arrogant assumptions. You may have a superb reason why I'm completely wrong.
-- Iain Clarke


GeneralRe: where is _ATL_SIMPLEMAPENTRY defined? Pin
George_George7-Apr-08 22:28
George_George7-Apr-08 22:28 
GeneralRe: where is _ATL_SIMPLEMAPENTRY defined? Pin
CPallini7-Apr-08 22:37
mveCPallini7-Apr-08 22:37 
GeneralRe: where is _ATL_SIMPLEMAPENTRY defined? Pin
George_George7-Apr-08 23:14
George_George7-Apr-08 23:14 
QuestionRe: where is _ATL_SIMPLEMAPENTRY defined? Pin
CPallini7-Apr-08 23:22
mveCPallini7-Apr-08 23:22 
GeneralRe: where is _ATL_SIMPLEMAPENTRY defined? Pin
George_George7-Apr-08 23:36
George_George7-Apr-08 23:36 
GeneralRe: where is _ATL_SIMPLEMAPENTRY defined? Pin
CPallini8-Apr-08 0:03
mveCPallini8-Apr-08 0:03 
GeneralRe: where is _ATL_SIMPLEMAPENTRY defined? Pin
George_George8-Apr-08 0:10
George_George8-Apr-08 0:10 
GeneralRe: where is _ATL_SIMPLEMAPENTRY defined? Pin
CPallini8-Apr-08 0:27
mveCPallini8-Apr-08 0:27 
GeneralRe: where is _ATL_SIMPLEMAPENTRY defined? Pin
George_George8-Apr-08 5:00
George_George8-Apr-08 5:00 
GeneralRe: where is _ATL_SIMPLEMAPENTRY defined? Pin
CPallini8-Apr-08 5:53
mveCPallini8-Apr-08 5:53 
GeneralRe: where is _ATL_SIMPLEMAPENTRY defined? Pin
George_George8-Apr-08 20:42
George_George8-Apr-08 20:42 
GeneralRe: where is _ATL_SIMPLEMAPENTRY defined? Pin
CPallini7-Apr-08 22:09
mveCPallini7-Apr-08 22:09 
GeneralDetecting a backslash in a string Pin
piul7-Apr-08 2:02
piul7-Apr-08 2:02 
GeneralRe: Detecting a backslash in a string Pin
liquid_7-Apr-08 2:10
liquid_7-Apr-08 2:10 
GeneralRe: Detecting a backslash in a string Pin
Mukesh Kumar7-Apr-08 2:12
Mukesh Kumar7-Apr-08 2:12 
GeneralRe: Detecting a backslash in a string Pin
James R. Twine7-Apr-08 3:37
James R. Twine7-Apr-08 3:37 
GeneralRe: Detecting a backslash in a string Pin
krmed7-Apr-08 3:59
krmed7-Apr-08 3:59 

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.