What does #PB_Function mean?
What does #PB_Function mean?
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?
A Procedure is selfwritten in your source, a function is buildin (incl. userlibfunction)
Re: What does #PB_Function mean?
So difference between #PB_OSFunction & #PB_Function ?ts-soft wrote:A Procedure is selfwritten in your source, a function is buildin (incl. userlibfunction)
Re: What does #PB_Function mean?
MessageRequester() is a #PB_Function
MessageBox_() is a #PB_OSFunction (API)
MessageBox_() is a #PB_OSFunction (API)
- Kaeru Gaman
- Addict
- Posts: 4826
- Joined: Sun Mar 19, 2006 1:57 pm
- Location: Germany
Re: What does #PB_Function mean?
what is the context of the constants? o.O
oh... and have a nice day.
Re: What does #PB_Function mean?
Compilerdirectives: Defined(Name, Typ)Kaeru Gaman wrote:what is the context of the constants? o.O
- Kaeru Gaman
- Addict
- Posts: 4826
- Joined: Sun Mar 19, 2006 1:57 pm
- Location: Germany
Re: What does #PB_Function mean?
Get it! ts-soft, thanks!