Eo base: Remove @inout usage.

First step towards deprecation of @inout.
This commit is contained in:
Tom Hacohen 2015-01-12 13:33:39 +00:00
parent cc3f38c1f1
commit 650f2b3149
1 changed files with 2 additions and 2 deletions

View File

@ -78,7 +78,7 @@ Prevents event callbacks from being called for the object. */
wref_del {
/*@ Delete the weak reference passed. */
params {
@inout Eo* wref;
@in Eo* wref;
}
}
destructor {
@ -135,7 +135,7 @@ callbacks of the same priority are called in reverse order of creation. */
/*@ Add a new weak reference to obj.
This function registers the object handle pointed by wref to obj so when obj is deleted it'll be updated to NULL. This functions should be used when you want to keep track of an object in a safe way, but you don't want to prevent it from being freed. */
params {
@inout Eo* wref;
@out Eo* wref;
}
}
dbg_info_get {