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

C / C++ / MFC

 
QuestionA simple problem about DrawText Pin
whiteclouds2-Jul-07 17:09
whiteclouds2-Jul-07 17:09 
AnswerRe: A simple problem about DrawText Pin
Arman S.2-Jul-07 19:27
Arman S.2-Jul-07 19:27 
Questionproblem about RichEdit Pin
kcynic2-Jul-07 15:29
kcynic2-Jul-07 15:29 
AnswerRe: problem about RichEdit Pin
Naveen2-Jul-07 15:42
Naveen2-Jul-07 15:42 
GeneralRe: problem about RichEdit Pin
kcynic2-Jul-07 18:41
kcynic2-Jul-07 18:41 
QuestionKeywords that I don't understand Pin
Alex Cutovoi2-Jul-07 13:26
Alex Cutovoi2-Jul-07 13:26 
AnswerRe: Keywords that I don't understand Pin
Stephen Hewitt2-Jul-07 13:30
Stephen Hewitt2-Jul-07 13:30 
AnswerRe: Keywords that I don't understand [modified] Pin
Jeremy Falcon2-Jul-07 14:12
professionalJeremy Falcon2-Jul-07 14:12 
In addition to what's been said, know that in Windows, native DLL [edit] exported [/edit] functions have to be __stdcall.

This affects stuff like stack order, which registers are used, etc. But the reality of it is in practice, make sure you don't use one type in a library and define it as a different one in the header. You'll get plenty of linker errors that way.

Btw, inline is in a court all its own. Rather than calling a function, the compiler attempts to take the body of that function and insert it into the block it was called from, thus saving the overhead of calling the function. Of course, if you call an inline function a lot, you'll increase the size of your exe substantially.


GeneralRe: Keywords that I don't understand Pin
Stephen Hewitt2-Jul-07 15:03
Stephen Hewitt2-Jul-07 15:03 
GeneralRe: Keywords that I don't understand Pin
Jeremy Falcon2-Jul-07 15:16
professionalJeremy Falcon2-Jul-07 15:16 
GeneralRe: Keywords that I don't understand Pin
Stephen Hewitt2-Jul-07 15:38
Stephen Hewitt2-Jul-07 15:38 
GeneralRe: Keywords that I don't understand Pin
Jeremy Falcon2-Jul-07 16:00
professionalJeremy Falcon2-Jul-07 16:00 
GeneralRe: Keywords that I don't understand Pin
Stephen Hewitt2-Jul-07 16:15
Stephen Hewitt2-Jul-07 16:15 
GeneralRe: Keywords that I don't understand Pin
Jeremy Falcon2-Jul-07 16:24
professionalJeremy Falcon2-Jul-07 16:24 
GeneralRe: Keywords that I don't understand Pin
Jeremy Falcon2-Jul-07 16:08
professionalJeremy Falcon2-Jul-07 16:08 
GeneralRe: Keywords that I don't understand Pin
Stephen Hewitt2-Jul-07 16:22
Stephen Hewitt2-Jul-07 16:22 
GeneralRe: Keywords that I don't understand Pin
Jeremy Falcon2-Jul-07 16:25
professionalJeremy Falcon2-Jul-07 16:25 
GeneralRe: Keywords that I don't understand Pin
User 5838522-Jul-07 16:44
User 5838522-Jul-07 16:44 
GeneralRe: Keywords that I don't understand Pin
Jeremy Falcon2-Jul-07 16:48
professionalJeremy Falcon2-Jul-07 16:48 
GeneralRe: Keywords that I don't understand Pin
User 5838522-Jul-07 16:57
User 5838522-Jul-07 16:57 
GeneralRe: Keywords that I don't understand Pin
Jeremy Falcon2-Jul-07 17:05
professionalJeremy Falcon2-Jul-07 17:05 
GeneralRe: Keywords that I don't understand Pin
User 5838522-Jul-07 17:48
User 5838522-Jul-07 17:48 
GeneralRe: Keywords that I don't understand Pin
Jeremy Falcon2-Jul-07 17:57
professionalJeremy Falcon2-Jul-07 17:57 
GeneralRe: Keywords that I don't understand Pin
User 5838522-Jul-07 18:02
User 5838522-Jul-07 18:02 
GeneralRe: Keywords that I don't understand Pin
Stephen Hewitt2-Jul-07 17:24
Stephen Hewitt2-Jul-07 17:24 

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.