RemoveKeepAlive() private method

private RemoveKeepAlive ( Object o ) : void
o Object
return void
Example #1
0
        private unsafe int CallbackProc(IntPtr clientData)
        {
            try {
                _interp.RemoveKeepAlive(_deletee);
                _interp.RemoveKeepAlive(this);

                if (_proc != null)
                {
                    _proc();
                }
            }
            catch (Exception) {
                return(TclNative.TCL_ERROR);
            }

            return(TclNative.TCL_OK);
        }