Click here to Skip to main content
15,915,019 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Recognize normal text on the screen Pin
followait7-Apr-08 5:35
followait7-Apr-08 5:35 
GeneralRe: Recognize normal text on the screen Pin
David Crow7-Apr-08 6:06
David Crow7-Apr-08 6:06 
AnswerRe: Recognize normal text on the screen Pin
yytg7-Apr-08 7:31
yytg7-Apr-08 7:31 
QuestionRe: Recognize normal text on the screen Pin
yytg7-Apr-08 23:42
yytg7-Apr-08 23:42 
GeneralRe: Recognize normal text on the screen Pin
Nitheesh George7-Apr-08 6:40
Nitheesh George7-Apr-08 6:40 
GeneralRe: Recognize normal text on the screen Pin
josip cagalj8-Apr-08 1:33
josip cagalj8-Apr-08 1:33 
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 

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.