Is it possible to share Trie handle between two plugins via natives and then retrieve data from it?
Sorry for not trying it out myself, I'm quite out of the server access now so I can't test it
I mean:
Code:
new Trie: TrieHandler
public plugin_natives( )
register_native( "ShareTrie", "_ShareTrie" )
public _ShareTrie( Plugin, Params )
return _: TrieHandler
In another plugin:
Code:
new Trie: SharedHandle = ShareTrie( )
...
TrieGetString( SharedHandle, ... )
I think the example is not necessary, just to be sure everyone understands what I mean.
Thanks in advance