Пример #1
0
bool Function::undefine() {
  if ( m_cobj )
    return EnvUndeffunction( m_environment.cobj(), m_cobj );
  return false;
}
Пример #2
0
EXPORT int STDCALL EnvUndeffunction1(void* env, void* ptr)
{
	return EnvUndeffunction(env, ptr);
}
Пример #3
0
globle intBool Undeffunction(
  void *vptr)
  {
   return EnvUndeffunction(GetCurrentEnvironment(),vptr);
  }