Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
4answers
3k views

Why in C++ do we use DWORD rather than unsigned int?

I'm not afraid to admit that I'm somewhat of a C++ newbie, so this might seem like a silly question but.... I see DWORD used all over the place in code examples. When I look up what a DWORD truly ...
6
votes
2answers
4k views

What does `dword ptr` mean?

Could someone explain what this means? (Intel Syntax, x86, Windows) and dword ptr [ebp-4], 0
5
votes
2answers
65 views

Why do I get a different value at run-time when type-casting a string to DWORD?

std::cout << (DWORD)"test"; If I compile and run this I get different output values each time, but I can't figure out why. Any ideas? PS: I'm using Windows 7 64-bit and I'm compiling with ...
5
votes
1answer
10k views

dword ptr usage confusion

In assembly language if we use mov eax, dword ptr[ebx] then it means copy the value pointed by ebx (ebx contains the address value, not the actual value, this instruction copies the actual value in ...
5
votes
4answers
10k views

Visual C++: How large is a DWORD with 32- and 64-bit code?

In Visual C++ a DWORD is just an unsigned long that is machine, platform, and SDK dependent. However, since DWORD is a double word (that is 2 * 16), is a DWORD still 32-bit on 64-bit architectures?
4
votes
4answers
571 views

Why are DWORD values commonly represented in Hexadecimal?

I am trying to understand why a DWORD value is often described in Hexadecimal on MSDN. The reason why I am analyzing this is because I am trying to understand fundamentally why all these different ...
4
votes
3answers
252 views

What does the “&0xFFFFFFFF” do in this HIDWORD macro

I needed the HIDWORD macro for a program I'm making and found this one here: http://gnuwin32.sourceforge.net/compile.html What I'm confused about is why there is a &0xFFFFFFFF at the end of it? ...
4
votes
4answers
264 views

Help deciphering a few lines of assembly

I have found these few lines of assembly in ollydbg: MOV ECX,DWORD PTR DS:[xxxxxxxx] ; xxxxxxxx is an address MOV EDX,DWORD PTR DS:[ECX] MOV EAX,DWORD PTR DS:[EDX+116] CALL EAX Could someone step ...
3
votes
4answers
262 views

Should DWORD map to int or uint?

When translating the Windows API (including data types) into P/Invoke, should I replace DWORD with int or uint? It's normally unsigned, but I see people using int everywhere instead (is it just ...
2
votes
1answer
116 views

DWORD casting to float after a simple swap?

I want to swap my float exemple: 14 D7 65 01 ----> 65 01 14 D7 The swap is easy to do. I work on a DWORD, I made my swap and then I cast my DWORD variable to float. The problem I have is that the ...
2
votes
1answer
102 views

append a DWORDs Decimal value apposed to Hexadecimal

I need to write a new value to the registry. I have come stuck at the following code because what i can add is a standard key and i need to place a new decimal value to a DWORD key (aposed to a ...
2
votes
4answers
612 views

PHP Bytes 2 DWord

I have an array: $arr[0] = 95 $arr[1] = 8 $arr[2] = 0 $arr[3] = 0 That are bytes. I need a DWORD. I tried: $dword = $arr[0]+$arr[1]*265+$arr[2]*265*265+$arr[3]*265*265*265; Is that right or am ...
1
vote
2answers
97 views

is DWORD defined in WinAPI the same as DWORD in assembly

in WinAPI: typedef unsigned long DWORD; I think DWORD, WORD ... is the basic data type in computer, for no matter int, unsigned long... it will be converted to DWORD finally in assembly, why should ...
1
vote
3answers
681 views

Convert from std::string to DWORD

I have a simple problem with a conversion: std::string str = "0xC0A80A02" and I need to convert it to DWORD. I searched on the web and found some solution but none seems to work. try1: DWORD ...
1
vote
3answers
428 views

how i show a dWord value in Messagebox api function

i want show a message dialog with a dword value like this MessageBox(0, (LPCWSTR) hProcess ,TEXT("My MessageBox Info"),MB_OK | MB_ICONERROR); hProcess is a DWORD value but it when messagebox ...
1
vote
3answers
956 views

How to convert ip address to DWORD?

Hey, how can I convert ip address to DWORD using python ? I searched a while but didn't found anything useful. Thanks for the helpers!
0
votes
2answers
134 views

Registry Editing: How to calculate DWord Hex Values

I'm trying to make some registry edits and I'm not sure I understand how specific dword values are calculated. Here are two examples: [HKEY_CURRENT_USER\ControlPanel\Volume] ...
0
votes
1answer
103 views

How to convert DWORDLONG to a char *?

res = pRecord->Usn ; char sres[1024]; strcpy(sres,""); ltoa(res,sres, 10); I have this variable res, which is of type DWORDLONG, and I am trying to convert it into a string so ...
0
votes
1answer
204 views

c# convert string to dword hex

Can anyone help me how to convert string value to dword hex for example: string i = "1"; uint32 m = .... m.toString(X8); so that: m = 00000001
0
votes
2answers
654 views

DWORD variable with low/high word and low/high byte

How in C can we read and make DWORD variables with a low and high word and low and high byte?
0
votes
2answers
250 views

Create a DWORD Pointer from Offset

So if I want to read some information at the offset 00A2E63C (e.g.)... and I need to have it as a DWORD, how can I convert the "00A2E63C" String to a proper DWORD? help is appreciated
0
votes
3answers
3k views

MFC: How to i convert DWORD and BYTE to LPCTSTR in order to display in MessageBox

I'm using VS2005 with "using Unicode Character Set" option typedef unsigned char BYTE; typedef unsigned long DWORD; BYTE m_bGeraet[0xFF]; DWORD m_dwAdresse[0xFF]; How do i ...
0
votes
2answers
3k views

How to cast a dword into a byte array in C#

As you already may know,I'm migrating into C# and some things in C++ look different. C++ code BYTE packetBuffer[32] = {0}; *(LPWORD)(packetBuffer + 0) = 0xC; *(LPWORD)(packetBuffer + 2) = ...
-3
votes
3answers
129 views

conversion from 'double' to 'DWORD', possible loss of data

I have added a resource in my project. Its size is 4.096 byte. i need to assign it to DWORD because 3rd argument of WriteFile() needs it. WriteFile(hFile, pExeResource,size, &bytesWritten, NULL); ...