genexp.pl
上传用户:sun1608
上传日期:2007-02-02
资源大小:6116k
文件大小:0k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. #!/usr/bin/perl
  2. #
  3. # Program to take a set of header files and generate MWCC export definitions
  4. while ( ($file = shift(@ARGV)) ) {
  5. if ( ! defined(open(FILE, $file)) ) {
  6. warn "Couldn't open $file: $!n";
  7. next;
  8. }
  9. $file =~ s,.*/,,;
  10. while (<FILE>) {
  11. if ( / DECLSPEC.*SDLCALL ([^s(]+)/ ) {
  12. print "_$1n";
  13. }
  14. }
  15. close(FILE);
  16. }
  17. # Special exports not public in the header files