git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@6746 626c5289-ae23-0410-ae9c-e8d60b6d4f22
21 lines
206 B
OpenEdge ABL
21 lines
206 B
OpenEdge ABL
%module file_test
|
|
|
|
%include file.i
|
|
|
|
|
|
%inline
|
|
%{
|
|
int nfile(FILE *file) {
|
|
return 0;
|
|
}
|
|
|
|
int nfile_name(const char *filename) {
|
|
return 0;
|
|
}
|
|
|
|
FILE* GetStdOut() {
|
|
return stdout;
|
|
}
|
|
|
|
%}
|
|
|