gendef.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 DLL export definitions
  4. while ( ($file = shift(@ARGV)) ) {
  5. if ( ! defined(open(FILE, $file)) ) {
  6. warn "Couldn't open $file: $!n";
  7. next;
  8. }
  9. $printed_header = 0;
  10. $file =~ s,.*/,,;
  11. while (<FILE>) {
  12. if ( / DECLSPEC.*SDLCALL ([^s(]+)/ ) {
  13. print "t$1n";
  14. }
  15. }
  16. close(FILE);
  17. }
  18. # Special exports not in the header files
  19. print "tSDL_RegisterAppn";
  20. print "tSDL_SetModuleHandlen";