Example #1
0
void __declspec(dllexport) CALL_CONV __EnvIncrementFactCount(
  void *theEnv,
  void *theFact)
  {
   EnvIncrementFactCount(theEnv,theFact);
  }
Example #2
0
 Fact::Fact( Environment& environment, void* cobj )
   : EnvironmentObject(environment, cobj)
 {
   if (m_cobj)
     EnvIncrementFactCount( m_environment.cobj(), m_cobj );
 }