Ok, here's what's going on:
I've made a library of functions which all return either true or false, simple stuff like: is it a date, is a file in use that sort of thing, now if also written a function IsConnected >>>
What I am wondering is, since this is going to be in a library (so I can add it to my uses list when I need it)
should I make it available like it is up there or like this:
Or doesn't it matter?
BobbaFet
Everyone has a right to my opinion.
[/b]
Great Delphi Websites faq102-5352
I've made a library of functions which all return either true or false, simple stuff like: is it a date, is a file in use that sort of thing, now if also written a function IsConnected >>>
Code:
function IsConnected: Boolean;
var flags: DWORD;
begin
Result := InternetGetConnectedState(@flags, 0);
end;
What I am wondering is, since this is going to be in a library (so I can add it to my uses list when I need it)
should I make it available like it is up there or like this:
Code:
function IsConnected(): Boolean;
var flags: DWORD;
begin
Result := InternetGetConnectedState(@flags, 0);
end;
Or doesn't it matter?
BobbaFet
Everyone has a right to my opinion.
[/b]
Great Delphi Websites faq102-5352