You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

36 lines
502 B

function NumberCb {
params {
n: int;
}
return: int;
};
class Example.Numberwrapper extends Efl.Object {
methods {
@property number {
get {
}
set {
}
values {
n: int;
}
}
number_set_call {
params {
n: int;
}
}
number_callback_set {
params {
cb: NumberCb;
}
}
callback_call {
return: int;
}
}
}