D - bug report in D compiler ?
- Lloyd Dupont (51/51) Nov 09 2002 I have a simple program with 2 files registry.d, regdump.d (see below) a...
- Walter (1/1) Nov 12 2002 Got it, thanks. -Walter
- Lloyd Dupont (4/5) Nov 12 2002 cool......... !!!
- Walter (3/8) Nov 13 2002 When I fix it !
I have a simple program with 2 files registry.d, regdump.d (see below) and
when I try
to compile it I always get thiw error message:
C:\D\dev\lloyd\reg>dmd -o a.exe regdump.d registry.d && a
Assertion failure: '0' on line 232 in file 'module.c'
abnormal program termination
module lloyd.registry;
import windows;
import string;
extern (Windows)
{
export LONG RegOpenKeyExA(HKEY,LPCSTR,DWORD,REGSAM,PHKEY);
export LONG RegOpenKeyExW(HKEY,LPCWSTR,DWORD,REGSAM,PHKEY);
}
LONG RegOpenKeyEx(HKEY hKey, char[] lpSubKey, DWORD ulOptions, REGSAM
samDesired, PHKEY phkResult)
{
return RegOpenKeyExA(hKey, lpSubKey, ulOptions, samDesired, phkResult);
}
import windows, registry;
import string;
import lloyd.registry;
char[] tostring(char* cstring)
{
int n = strlen(cstring);
return cstring[0 .. n];
}
void dump(HKEY root, char[] subkey)
{
HKEY rKey;
LONG ret = RegOpenKeyEx(
root,
subkey,
0,
KEY_READ,
&rKey);
assert(ret == ERROR_SUCCESS);
try {
}
finally { RegCloseKey(rKey); }
}
// dmd -o a.exe regdump.d registry.d && a
int main(char[][] args)
{
dump(HKEY_LOCAL_MACHINE, 'Software\7-ZIP');
return 0;
}
Nov 09 2002
Walter wrote:Got it, thanks. -Waltercool......... !!! when would I be able to download the new compiler ? :-) ?
Nov 12 2002
"Lloyd Dupont" <lloyd galador.net> wrote in message news:aqrtu1$12nm$2 digitaldaemon.com...Walter wrote:When I fix it !Got it, thanks. -Waltercool......... !!! when would I be able to download the new compiler ? :-) ?
Nov 13 2002








"Walter" <walter digitalmars.com>