Displaying 3 results from an estimated 3 matches for "regcreatekeya".
2005 Aug 23
0
Compiling winelib dependant code with g++
...compilation is okay, but at linking time, all wine functions are unresolved.
// ### here's the output :###
[root@udp015809uds Wine2]# g++ -lwine registry.o registry_wrap.o -o registry.out
registry.o(.text+0x2e): In function `CreateKey(char const*)':
: undefined reference to `RegCreateKeyA'
registry.o(.text+0x58): In function `CreateKey(char const*)':
: undefined reference to `RegQueryValueExA'
registry.o(.text+0x8f): In function `CreateKey(char const*)':
: undefined reference to `RegQueryValueExA'
registry.o(.text+0xa5): In function `Create...
2014 Jan 08
0
Re: hivex: Make node names and value names with embedded null characters accessible
On Wed, Jan 08, 2014 at 01:26:23AM +0100, Hilko Bengen wrote:
> On Windows, there exist at least two APIs for dealing with the
> Registry: The Win32 API (RegCreateKeyA, RegCreateKeyW, etc.) works
> with null-terminated ASCII or UTF-16 strings. The native API
> (ZwCreateKey, etc.), on the other hand works with UTF-16 strings that
> are stored as buffers+length and may contain null characters. Malware
> authors have been relying on the Win32 API's i...
2014 Jan 08
5
hivex: Make node names and value names with embedded null characters accessible
On Windows, there exist at least two APIs for dealing with the
Registry: The Win32 API (RegCreateKeyA, RegCreateKeyW, etc.) works
with null-terminated ASCII or UTF-16 strings. The native API
(ZwCreateKey, etc.), on the other hand works with UTF-16 strings that
are stored as buffers+length and may contain null characters. Malware
authors have been relying on the Win32 API's inability to properly...