Example #1
0
void __declspec(dllexport) CALL_CONV __EnvDecrementFactCount(
  void *theEnv,
  void *theFact)
  {
   EnvDecrementFactCount(theEnv,theFact);
  }
Example #2
0
void __declspec(dllexport) CALL_CONV __EnvDecrementInstanceCount(
  void *theEnv,
  void *theInstance)
  {
   EnvDecrementFactCount(theEnv,theInstance);
  }
Example #3
0
 Fact::~Fact() {
   if (m_cobj)
     EnvDecrementFactCount( m_environment.cobj(), m_cobj );
 }