Page 1 of 1
What does #PB_Function mean?
Posted: Sun Dec 20, 2009 4:08 pm
by clover
There are several new constants in new 4.40 ver. Such as "#PB_Function". I cannot find help about it and guess it's equal to #PB_Procedure, isn't it? Please teach me, thanks a lot!
Re: What does #PB_Function mean?
Posted: Sun Dec 20, 2009 4:10 pm
by ts-soft
A Procedure is selfwritten in your source, a function is buildin (incl. userlibfunction)
Re: What does #PB_Function mean?
Posted: Sun Dec 20, 2009 4:16 pm
by clover
ts-soft wrote:A Procedure is selfwritten in your source, a function is buildin (incl. userlibfunction)
So difference between #PB_OSFunction & #PB_Function ?
Re: What does #PB_Function mean?
Posted: Sun Dec 20, 2009 4:57 pm
by ts-soft
MessageRequester() is a #PB_Function
MessageBox_() is a #PB_OSFunction (API)
Re: What does #PB_Function mean?
Posted: Sun Dec 20, 2009 5:03 pm
by Kaeru Gaman
what is the context of the constants? o.O
Re: What does #PB_Function mean?
Posted: Sun Dec 20, 2009 5:42 pm
by ts-soft
Kaeru Gaman wrote:what is the context of the constants? o.O
Compilerdirectives: Defined(Name, Typ)
Re: What does #PB_Function mean?
Posted: Sun Dec 20, 2009 5:45 pm
by Kaeru Gaman
thnx
Re: What does #PB_Function mean?
Posted: Mon Dec 21, 2009 11:39 am
by clover
Get it! ts-soft, thanks!