On 05 Nov 2013, at 09:07, Antonio Fortuny wrote:
> I don't know a way to make the data pointed to, as being constant.
There is indeed no way to specify that in Pascal.
Jonas
___
fpc-pascal maillist - fpc-pascal@lists.freepascal.org
http://lists.fre
On Tue, Nov 5, 2013 at 12:10 PM, leledumbo wrote:
>> The packages are defined using directories. Is Java a mess too?
>
> Yes, exactly, that's what makes Java package system messy. It makes
> refactoring (or restructurization) extremely difficult for deep package
> hierarchy.
So I proposed somethi
On Tue, 5 Nov 2013 07:10:21 -0800 (PST)
leledumbo wrote:
> > The packages are defined using directories. Is Java a mess too?
>
> Yes, exactly, that's what makes Java package system messy. It makes
> refactoring (or restructurization) extremely difficult for deep package
> hierarchy.
Java has
> The packages are defined using directories. Is Java a mess too?
Yes, exactly, that's what makes Java package system messy. It makes refactoring
(or restructurization) extremely difficult for deep package hierarchy.
On Tuesday, November 5, 2013 6:37 PM, Marcos Douglas [via Free Pascal -
Ge
On Mon, Nov 4, 2013 at 10:44 PM, Dmitry Boyarintsev
wrote:
> On Mon, Nov 4, 2013 at 6:07 PM, Marcos Douglas wrote:
>>
>> Sorry, but this is boring.
>> Do you not agree that is much better propose a solution to be possible
>> to use two -- or more -- units that have the same name but works
>> toge
Le 04/11/2013 14:18, Alexander a
écrit :
How can I describe a "pointer to a constant char" in FreePascal?
For example this C function:
int some_func(const char *arg, ...);
... coulb be translated to
some_proc(const arg: PChar, ...
On 11/04/2013 02:18 PM, Alexander wrote:
How can I describe a "pointer to a constant char" in FreePascal?
For example this C function:
int some_func(const char *arg, ...);
My guess in FreePascal is this(with ctypes unit):
function some_func(const arg: pcchar): cint; cdecl; external;
A const