What does #PB_Function mean?

Just starting out? Need help? Post your questions and find answers here.
clover
User
User
Posts: 14
Joined: Tue Dec 30, 2008 4:43 am

What does #PB_Function mean?

Post 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!
User avatar
ts-soft
Always Here
Always Here
Posts: 5756
Joined: Thu Jun 24, 2004 2:44 pm
Location: Berlin - Germany

Re: What does #PB_Function mean?

Post by ts-soft »

A Procedure is selfwritten in your source, a function is buildin (incl. userlibfunction)
clover
User
User
Posts: 14
Joined: Tue Dec 30, 2008 4:43 am

Re: What does #PB_Function mean?

Post 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 ?
User avatar
ts-soft
Always Here
Always Here
Posts: 5756
Joined: Thu Jun 24, 2004 2:44 pm
Location: Berlin - Germany

Re: What does #PB_Function mean?

Post by ts-soft »

MessageRequester() is a #PB_Function
MessageBox_() is a #PB_OSFunction (API)
User avatar
Kaeru Gaman
Addict
Addict
Posts: 4826
Joined: Sun Mar 19, 2006 1:57 pm
Location: Germany

Re: What does #PB_Function mean?

Post by Kaeru Gaman »

what is the context of the constants? o.O
oh... and have a nice day.
User avatar
ts-soft
Always Here
Always Here
Posts: 5756
Joined: Thu Jun 24, 2004 2:44 pm
Location: Berlin - Germany

Re: What does #PB_Function mean?

Post by ts-soft »

Kaeru Gaman wrote:what is the context of the constants? o.O
Compilerdirectives: Defined(Name, Typ)
User avatar
Kaeru Gaman
Addict
Addict
Posts: 4826
Joined: Sun Mar 19, 2006 1:57 pm
Location: Germany

Re: What does #PB_Function mean?

Post by Kaeru Gaman »

thnx
oh... and have a nice day.
clover
User
User
Posts: 14
Joined: Tue Dec 30, 2008 4:43 am

Re: What does #PB_Function mean?

Post by clover »

Get it! ts-soft, thanks!
Post Reply