Skip to content

Commit

Permalink
some changes to the stub keyed access methods on the proxy controller
Browse files Browse the repository at this point in the history
  • Loading branch information
Whiteknight committed Mar 5, 2011
1 parent dd4f013 commit d2ddda9
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions src/proxy/Controller.winxed
Expand Up @@ -86,15 +86,24 @@ namespace Rosella { namespace Proxy

/* Keyed Access Methods
These methods are called on array- and hash-like keyed vtable
accesses.
accesses. Key types are "pmc", "integer", "string".
*/

function get_keyed(var proxy, string val_type, string key_type, string key)
function get_keyed(var proxy, string val_type, string key_type, var key)
{
return null;
}

function set_keyed(var proxy, string val_type, string key_type, string key, var value)
function set_keyed(var proxy, string val_type, string key_type, var key, var value)
{
}

function exists_keyed(var proxy, string val_type, string key_type, var key)
{
return 0;
}

function delete_keyed(var proxy, string val_type, string key_type, var key)
{
}
}
Expand Down

0 comments on commit d2ddda9

Please sign in to comment.