October 02, 2002 D » Re: forgetting to call super doesn't call any super constructors. | |||
|---|---|---|---|
| |||
...int len, class<MyObj> objClass ) { return objClass.new(
len ); }
or
MyObj makeANew( int len, classref... | |||
September 13, 2002 D » Re: dmd 0.42 release | |||
|---|---|---|---|
| |||
...import string;
alias string.strlen mylen;
...
int len = mylen("hello"); // actually calls string.strlen()
The... | |||
September 13, 2002 D » Re: dmd 0.42 release | |||
|---|---|---|---|
| |||
...import string;
alias string.strlen mylen;
...
int len = mylen("hello"); // actually calls string.strlen()
The... | |||
August 22, 2002 c++.windows.32-bits » Re: file i/o dialog problem | |||
|---|---|---|---|
| |||
...fix the size, go for MAX_FILE_LEN (or similar, but there's a constant... | |||
August 22, 2002 D » Non-"new" Entry to GC? | |||
|---|---|---|---|
| |||
...gc.AddRegion(ptr, <length>, &munmap);
return (char[<len>])ptr;
}
Then, the user would call gc... | |||
August 10, 2002 c++.windows.32-bits » file i/o dialog problem | |||
|---|---|---|---|
| |||
...file
}
break ;
BOOL GetFileNameSave(char *filename, int len, HWND hWnd)
{
OPENFILENAME ofn;
ZeroMemory(&ofn, sizeof... | |||
July 31, 2002 c++.windows.32-bits » file extension when saving | |||
|---|---|---|---|
| |||
...using this:
BOOL GetFileNameSave(char *filename, int len, HWND hWnd)
{
OPENFILENAME ofn;
ZeroMemory(&ofn, sizeof... | |||
July 30, 2002 c++.windows.32-bits » Where to find _finddata_t definition? | |||
|---|---|---|---|
| |||
...expression is not used
f.f_base.len = strlen( finfo->name );
^
filent.c(111) : Error... | |||
July 28, 2002 c++.stl.port » Re: STLport 4.5.3 | |||
|---|---|---|---|
| |||
...limitations in DM's Librarian (Assertion failure: 'len <= IDMAX' on line 129 in file 'libin... | |||
July 19, 2002 c++.dos.32-bits » Legal read/write pointer | |||
|---|---|---|---|
| |||
...unsigned long addr, int len)
{
if (addr < 0x1000 || (addr >= 0xFFFFFFFFL - len))
return (FALSE);
if (addr... | |||
Copyright © 1999-2021 by the D Language Foundation