Click here to Skip to main content
15,917,652 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Interprocess cmm, using shared DLL Pin
Matthew Faithfull12-Nov-07 0:28
Matthew Faithfull12-Nov-07 0:28 
GeneralRe: Interprocess cmm, using shared DLL Pin
Anders Gustafsson12-Nov-07 0:40
Anders Gustafsson12-Nov-07 0:40 
GeneralRe: Interprocess cmm, using shared DLL Pin
Matthew Faithfull12-Nov-07 1:13
Matthew Faithfull12-Nov-07 1:13 
GeneralRe: Interprocess cmm, using shared DLL Pin
Anders Gustafsson12-Nov-07 6:45
Anders Gustafsson12-Nov-07 6:45 
AnswerRe: Interprocess cmm, using shared DLL Pin
KarstenK12-Nov-07 0:56
mveKarstenK12-Nov-07 0:56 
GeneralRe: Interprocess cmm, using shared DLL Pin
Anders Gustafsson12-Nov-07 1:06
Anders Gustafsson12-Nov-07 1:06 
QuestionRunning multiple Instances of an application Pin
Chirag_kalra11-Nov-07 23:23
Chirag_kalra11-Nov-07 23:23 
AnswerRe: Running multiple Instances of an application Pin
Naveen11-Nov-07 23:51
Naveen11-Nov-07 23:51 
GeneralRe: Running multiple Instances of an application Pin
Chirag_kalra11-Nov-07 23:59
Chirag_kalra11-Nov-07 23:59 
GeneralRe: Running multiple Instances of an application Pin
Naveen12-Nov-07 0:08
Naveen12-Nov-07 0:08 
GeneralRe: Running multiple Instances of an application Pin
Chirag_kalra12-Nov-07 0:23
Chirag_kalra12-Nov-07 0:23 
GeneralRe: Running multiple Instances of an application Pin
Naveen12-Nov-07 0:52
Naveen12-Nov-07 0:52 
Question\\systemname\\C$ Pin
p_11-Nov-07 23:22
p_11-Nov-07 23:22 
GeneralRe: \\systemname\\C$ Pin
Matthew Faithfull11-Nov-07 23:31
Matthew Faithfull11-Nov-07 23:31 
GeneralRe: \\systemname\\C$ Pin
p_12-Nov-07 0:12
p_12-Nov-07 0:12 
GeneralRe: \\systemname\\C$ Pin
p_12-Nov-07 0:18
p_12-Nov-07 0:18 
GeneralRe: \\systemname\\C$ Pin
Matthew Faithfull12-Nov-07 0:32
Matthew Faithfull12-Nov-07 0:32 
GeneralRe: \\systemname\\C$ Pin
p_12-Nov-07 0:41
p_12-Nov-07 0:41 
GeneralRe: \\systemname\\C$ Pin
toxcct12-Nov-07 2:12
toxcct12-Nov-07 2:12 
QuestionCalculated values from different functions to a single function. Pin
CodingLover11-Nov-07 21:53
CodingLover11-Nov-07 21:53 
AnswerRe: Arguments from different functions to a single function. Pin
baerten11-Nov-07 22:09
baerten11-Nov-07 22:09 
GeneralRe: Arguments from different functions to a single function. Pin
CodingLover11-Nov-07 22:16
CodingLover11-Nov-07 22:16 
I hope and may I give a wrong explanation. I'll try to give an example. Here it is.

Say I have following functions.

<br />
void functionOne(int x, int y)<br />
{<br />
// Do some work and find some values,<br />
// say int a, int b<br />
// Need to send those values to mainCal()<br />
}<br />
<br />
void functionTwo()<br />
{<br />
// Do some work and find some values,<br />
// say double dd,<br />
// Need to send those values to mainCal()<br />
}<br />


Now what I want to do is, use those calculated values inside another function for another process.

<br />
void mainCal(int i, int j, double k)<br />
{<br />
// Using i, j, k<br />
// Do another process<br />
}<br />


I think now my question is clear to you Smile | :)

I appreciate your help all the time...
Eranga Smile | :)

GeneralRe: Arguments from different functions to a single function. [modified] Pin
Rajasekharan Vengalil11-Nov-07 22:22
Rajasekharan Vengalil11-Nov-07 22:22 
GeneralRe: Arguments from different functions to a single function. Pin
CodingLover11-Nov-07 22:27
CodingLover11-Nov-07 22:27 
GeneralRe: Arguments from different functions to a single function. Pin
Rajasekharan Vengalil11-Nov-07 22:33
Rajasekharan Vengalil11-Nov-07 22:33 

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.