gendef.pl
资源名称:NETVIDEO.rar [点击查看]
上传用户:sun1608
上传日期:2007-02-02
资源大小:6116k
文件大小:0k
源码类别:
流媒体/Mpeg4/MP4
开发平台:
Visual C++
- #!/usr/bin/perl
- #
- # Program to take a set of header files and generate DLL export definitions
- while ( ($file = shift(@ARGV)) ) {
- if ( ! defined(open(FILE, $file)) ) {
- warn "Couldn't open $file: $!n";
- next;
- }
- $printed_header = 0;
- $file =~ s,.*/,,;
- while (<FILE>) {
- if ( / DECLSPEC.*SDLCALL ([^s(]+)/ ) {
- print "t$1n";
- }
- }
- close(FILE);
- }
- # Special exports not in the header files
- print "tSDL_RegisterAppn";
- print "tSDL_SetModuleHandlen";