dword Questions
4
Solved
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?...
3
Solved
How in C can we read and make DWORD variables with a low and high word and low and high byte?
7
Solved
2
Solved
2
Solved
Im making a program that sees if a subkey in Registry exist and, if it doesnt exist it will create a subkey with a value (dword). This program is being create to replace a .bat file that people (no...
1
Solved
a * x = b
I have a seemingly rather complicated multiplication / imul problem: if I have a and I have b, how can I calculate x if they're all 32-bit dwords (e.g. 0-1 = FFFFFFFF, FFFFFFFF+1 = 0)?
...
2
Solved
I've noticed that DWord and QWord values when written to the Registry supposed to be Signed Integers, not Unsigned. This code will throw an exception if value is UInt64 or UInt32:
registryKey.SetV...
2
Solved
I try to create an item using Set-ItemProperty in PowerShell, which works on most systems:
New-PSDrive -name HKCR -PSProvider Registry -root HKEY_CLASSES_ROOT
Set-ItemProperty -Path HKCR:\Softwar...
Asco asked 28/5, 2013 at 8:29
3
Solved
Could someone explain what this means? (Intel Syntax, x86, Windows)
and dword ptr [ebp-4], 0
2
Solved
summary
I need to be able to find the DWORD value of a registry key and set a variable to it to run an if statement against it.
how can i grab just the dword of a reg query so that i can work wit...
Bonhomie asked 1/7, 2013 at 19:26
3
Solved
In going through some source code, I found a method in a C program that takes an arguments of the types WORD, DWORD, and PWORD. I know they translate to unsigned numbers, but why are they called WO...
1
Solved
I've created an installer with WiX and am trying to preserve an existing DWORD registry entry during a repair installation of my product. To store the existing values, I am using the following WiX ...
1
Solved
5
Solved
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...
Noctilucent asked 13/4, 2011 at 20:34
4
Solved
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 ste...
4
Solved
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 ...
1
© 2022 - 2024 — McMap. All rights reserved.