SE_FUNCTION_GLOBAL
If JSE_MULTIPLE_GLOBAL is defined, then this flag can be used with functions to retrieve or assign the global object that will be associated with that function. SE_NOWHERE will be used if the function object should not set the global on entry/exit.
For example, to disable global variable switching on a function named "anonymous":
seobject anon;
anon = seGetObject(se,SE_GLOBAL,SE_MEM("anonymous"));
sePutObject(se,anon,SE_FUNCTION_GLOBAL,SE_NOWHERE);