473,385 Members | 2,269 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,385 software developers and data experts.

how to transfer a DWORD from a function?

how to would you transfer a DWORD variable from inside of a function to
the caller
ex.
InvokeProcessData(LPDWORD prtDW)
{
...
// we have created, initialized and processed
// dword variable from
DWORD data[32];

// we need to transfer DWORD data to caller
}
so that, the calling function would look like:

winmain(...)
{

DWORD new_data_buffer;
InvokeProcessData(&new_data_buffer);

//later 'new_data_buffer' will be used for example:

WriteFile(hFile, &new_data_buffer, ...,)

}

Dec 12 '05 #1
7 3616
monkeydragon wrote:
how to would you transfer a DWORD variable from inside of a function to
the caller
ex.
InvokeProcessData(LPDWORD prtDW)
{
..
// we have created, initialized and processed
// dword variable from
DWORD data[32];

// we need to transfer DWORD data to caller
}
so that, the calling function would look like:

winmain(...)
{

DWORD new_data_buffer;
InvokeProcessData(&new_data_buffer);

//later 'new_data_buffer' will be used for example:

WriteFile(hFile, &new_data_buffer, ...,)

}

You can't return an array in C, so you have to use a pointer. Then
there are several ways.

You can make the function fill an array defined outside it directly.
Just define DWORD new_data_buffer[32], and call
InvokeProcessData(new_data_buffer). Then use prtDW inside the function,
instead of 'data'.

You can also have a static array inside of InvokeProcessData and just
return a pointer to it:

LPDWORD InvokeProcessData(void)
{
static DWORD data[32];
/* fill data with data */

/* this returns a pointer, NOT a copy of the array */
return data;
}
Everytime you call InvokeProcessData it will then overwrite the array,
so you need to copy it if you want to keep the previous version for use
outside the function. But you'd probably want the first method instead
of this.

I'm assuming that LPDWORD is just a DWORD *. And DWORD might be 32 bit
integer, not that it matters.

And you might want to use

#define PROCESS_DATA_SIZE 32

or something like that, instead of using the number directly. It
documents what the number is for, makes it easier to change it since you
only need to change it in one spot, and also makes it unlikely that you
type 23 somewhere instead of 32, etc.
Dec 12 '05 #2
int foo (LPDWORD prtDW, LPDWORD& prtResultDW)
{
// .....
// Create required size array and store pointer to it in external
// variavle, and size of it can be returned as a result of
function.
int res_size = XX;
prtResultDW = new DWORD[res_size];

/// ....

return res_size;
}

or

void foo (LPDWORD prtDW, LPDWORD prtResultDW)
{
// .....
// prtResultDW = pointer to array where is enough space for store
results
// ....
}

Dec 12 '05 #3
"monkeydragon" <ke***********@gmail.com> wrote:
how to would you transfer a DWORD variable from inside of a function to
the caller
ex.
InvokeProcessData(LPDWORD prtDW)
{
..
// we have created, initialized and processed
// dword variable from
DWORD data[32];

// we need to transfer DWORD data to caller
}
so that, the calling function would look like:

winmain(...)
{

DWORD new_data_buffer;
InvokeProcessData(&new_data_buffer);

//later 'new_data_buffer' will be used for example:

WriteFile(hFile, &new_data_buffer, ...,)

}


You passed a pointer to InvokeProcessData; so why
not just write to that location in that function,
like so:

(*prtDW) = 72;

That will write 72 to your local variable in Winmain().

If you need to pass more data than just one DWORD
back to Winmain, then make an array in Winmain()
and pass it to InvokeProcessData():

// In Winmain():
DWORD BigArray[500];
InvokeProcessData(BigArray)

// In InvokeProcessData():
InvokeProcessData(DWORD* Blat)
{
for (int i=0; i<500; ++i)
{
Blat[i] = whatever // writes to BigArray in Winmain()
}
}

Or better, pass a std::list by non-const ref:

// In Winmain():
....
std::list<DWORD> MyList;
....
InvokeProcessData(MyList);
....

// In InvokeProcessData():
void InvokeProcessData(std::list<DWORD> & Blat)
{
...
std::list<DWORD>::iterator
for (i=Blat.begin(); i!=Blat.end; ++i)
{
(*i) = whatever // writes to MyList in Winmain()
}
...
}

--
Robbie Hatley
Tustin, CA, USA
lone wolf intj at pac bell dot net
home dot pac bell dot net slant earnur slant
Dec 12 '05 #4
i did something like this:
InvokeProcessData(UINT selOffset, LPDWORD pData)
{
DWORD byteStorage[32];
// initializations and other things...
// then...
*pData = byteStorage[selOffset];
}

what do you think?

Dec 12 '05 #5
If I understand You correctly, You try return from function array of
DWORD values, or not, and You need return only one ? If you want return
only one You can use return operator.

Dec 13 '05 #6
Geo

monkeydragon wrote:
i did something like this:
InvokeProcessData(UINT selOffset, LPDWORD pData)
{
DWORD byteStorage[32];
// initializations and other things...
// then...
*pData = byteStorage[selOffset];
}

what do you think?


I think, no I know, you don't want to do that (assuming LPDWORD is a
DWORD*).

Outside of InvokeProcessData, byteStorage doesn't exist, so pData will
be a pointer into unallocated memory, very bad.

Dec 13 '05 #7
I am sorry to cause you much trouble, but i have already resolved that
problem.
I use CopyMemory();
Thank anyways,

_May_the_force_be_with_you_

Dec 14 '05 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

20
by: Xanax | last post by:
Hi all, I have an edit box in my app displaying the results of function executions as strings. But some of the functions return the result of driver properties, which are in DWORD format. Is...
7
by: __PPS__ | last post by:
Actually what I mean is that - if I have some memory buffer, lets say char a; and then I do like this: DWORD num = 0x1234; *(DWORD*)a = num; (1) *(DWORD*)(a+1) = num; (2) either...
16
by: Khuong Dinh Pham | last post by:
I have the contents of an image of type std::string. How can I make a CxImage object with this type. The parameters to CxImage is: CxImage(byte* data, DWORD size) Thx in advance
7
by: John J. Hughes II | last post by:
I need to save a DWORD to the sql server, the below posts an error, any suggestions on what I am doing wrong. I have the column in the sql server defined as an int since unsigned int is not valid....
2
by: Vladimir_petter | last post by:
Hello All, I've fount that if I compile the same program using gcc and vc 2003 the same class E (see complete source bellow) has different size (on vc it is 4 bytes bigger). Digging into this...
1
by: Gabest | last post by:
Running this piece of code while having the sse optimization turned on (vcnet2003), something really strange happens I cannot explain. Without sse it is giving me the right results. float f =...
6
by: CMG | last post by:
I am writing a little code to associate an extention with my program. And as far as i can see, i need to do the following: Public Function associatefile(ByVal FILE_EXTENTION_TO_ASSOCIATE As...
4
by: Virajitha Sarma | last post by:
Hi, I have a code in C which i am rewritting it in C#. I am facing problem with the following two lines : char *cipher; (DWORD*)cipher(C) and (uint*)cipher(C#) are giving different values...
6
by: ppuniversal | last post by:
I am facing a problem: I have say 3 files : ABC.h ----- this file has the function prototypes ABC.cpp ------ the definitions of the functions ABC_Test.cpp ------- the file with main()...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.