Click here to Skip to main content
15,886,362 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: How do I get the ID of ComboBox? Pin
Albert Holguin29-Mar-11 7:58
professionalAlbert Holguin29-Mar-11 7:58 
GeneralRe: How do I get the ID of ComboBox? [SOLVED] Pin
jhoesche0229-Mar-11 8:44
jhoesche0229-Mar-11 8:44 
GeneralRe: How do I get the ID of ComboBox? [SOLVED] Pin
Albert Holguin29-Mar-11 8:48
professionalAlbert Holguin29-Mar-11 8:48 
AnswerRe: How do I get the ID of ComboBox? Pin
Maximilien29-Mar-11 8:23
Maximilien29-Mar-11 8:23 
GeneralRe: How do I get the ID of ComboBox? [SOLVED] Pin
jhoesche0229-Mar-11 8:46
jhoesche0229-Mar-11 8:46 
GeneralRe: How do I get the ID of ComboBox? Pin
Niklas L30-Mar-11 0:48
Niklas L30-Mar-11 0:48 
AnswerRe: How do I get the ID of ComboBox? Pin
Richard MacCutchan29-Mar-11 10:48
mveRichard MacCutchan29-Mar-11 10:48 
QuestionOUT parameters in inline asm Pin
csrss29-Mar-11 3:25
csrss29-Mar-11 3:25 
Hey guys. Lets say, i have such function, like:

void Stuff(int A, int *B);


So as you can see, B is OUT parameter. The question is, how would you call it from inline assembly code?
Something like this:

void Some(int A){ //do something with a }
__asm
{
    push 1
    call dword ptr Some
}

// or this

int Some(int A, int B){ // do something with variables and return some integer }
__asm
{
    push 2
    push 5
    call dword ptr Some
    // now the function result is in eax, so we can grab it and store in some variable, and do something with it later
} 


but how to do it with this: void Stuff(int A, int *B) ? How to get B?
Thanks
011011010110000101100011011010000110100101101110
0110010101110011

AnswerRe: OUT parameters in inline asm [SOLVED] Pin
csrss29-Mar-11 4:17
csrss29-Mar-11 4:17 
QuestionBit extraction from byte Pin
sathishrdh29-Mar-11 2:22
sathishrdh29-Mar-11 2:22 
AnswerRe: Bit extraction from byte Pin
Niklas L29-Mar-11 2:27
Niklas L29-Mar-11 2:27 
GeneralRe: Bit extraction from byte Pin
Albert Holguin29-Mar-11 3:50
professionalAlbert Holguin29-Mar-11 3:50 
GeneralRe: Bit extraction from byte Pin
Peter_in_278029-Mar-11 11:43
professionalPeter_in_278029-Mar-11 11:43 
GeneralRe: Bit extraction from byte Pin
Albert Holguin29-Mar-11 12:51
professionalAlbert Holguin29-Mar-11 12:51 
AnswerRe: Bit extraction from byte Pin
Stefan_Lang30-Mar-11 1:53
Stefan_Lang30-Mar-11 1:53 
QuestionFrench localization using Single-byte character set (SBCS) Pin
Selvam R28-Mar-11 23:27
professionalSelvam R28-Mar-11 23:27 
AnswerRe: French localization using Single-byte character set (SBCS) Pin
Richard MacCutchan28-Mar-11 23:59
mveRichard MacCutchan28-Mar-11 23:59 
GeneralRe: French localization using Single-byte character set (SBCS) Pin
Selvam R29-Mar-11 0:25
professionalSelvam R29-Mar-11 0:25 
GeneralRe: French localization using Single-byte character set (SBCS) Pin
Richard MacCutchan29-Mar-11 3:09
mveRichard MacCutchan29-Mar-11 3:09 
GeneralRe: French localization using Single-byte character set (SBCS) Pin
Selvam R29-Mar-11 18:48
professionalSelvam R29-Mar-11 18:48 
QuestionHow to revert SetCheckBox style ? [modified] Pin
_Flaviu28-Mar-11 21:30
_Flaviu28-Mar-11 21:30 
AnswerRe: How to revert SetCheckBox style ? Pin
Richard MacCutchan28-Mar-11 22:32
mveRichard MacCutchan28-Mar-11 22:32 
GeneralRe: How to revert SetCheckBox style ? Pin
_Flaviu29-Mar-11 5:03
_Flaviu29-Mar-11 5:03 
GeneralRe: How to revert SetCheckBox style ? Pin
Richard MacCutchan29-Mar-11 5:36
mveRichard MacCutchan29-Mar-11 5:36 
GeneralRe: How to revert SetCheckBox style ? Pin
_Flaviu29-Mar-11 20:52
_Flaviu29-Mar-11 20:52 

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.