bool IsLibrariesAllowed( )
Returns TRUE if the expert can call library function, otherwise returns FALSE.
エキスパートがライブラリ関数を呼び出すことが出来る場合は、TRUEを返し、そうでない場合は、FALSE を返します。
Sample:
サンプル:
1 2 3 4 5 6 7 8 9 10 11 | #import "somelibrary.ex4" int somefunc(); ... ... if(IsLibrariesAllowed()==false) { Print("Library call is not allowed."); return(0); } // expert body that calls external DLL functions somefunc(); |