Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
515 B

  1. # NOTE: Derived from ../LIB\DynaLoader.pm.
  2. # Changes made here will be lost when autosplit is run again.
  3. # See AutoSplit.pm.
  4. package DynaLoader;
  5. #line 375 "../LIB\DynaLoader.pm (autosplit into ..\lib\auto\DynaLoader\dl_find_symbol_anywhere.al)"
  6. sub dl_find_symbol_anywhere
  7. {
  8. my $sym = shift;
  9. my $libref;
  10. foreach $libref (@dl_librefs) {
  11. my $symref = dl_find_symbol($libref,$sym);
  12. return $symref if $symref;
  13. }
  14. return undef;
  15. }
  16. 1;
  17. # end of DynaLoader::dl_find_symbol_anywhere