diff options
author | Thomas E. Dickey <dickey@invisible-island.net> | 2004-02-02 23:50:20 -0500 |
---|---|---|
committer | Thomas E. Dickey <dickey@invisible-island.net> | 2004-02-02 23:50:20 -0500 |
commit | b9e930ec26cc241a14705966d21ae0bf3559d8ef (patch) | |
tree | 8d82d526292d8a8a3176c3a9fbfc4fc66fd21293 /src/LYCgi.c | |
parent | 7352a91bc1925296bc103f972c9988178cbbbc43 (diff) | |
download | lynx-snapshots-b9e930ec26cc241a14705966d21ae0bf3559d8ef.tar.gz |
snapshot of project "lynx", label v2-8-5pre_5
Diffstat (limited to 'src/LYCgi.c')
-rw-r--r-- | src/LYCgi.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/LYCgi.c b/src/LYCgi.c index 7f304759..4c819ffe 100644 --- a/src/LYCgi.c +++ b/src/LYCgi.c @@ -140,6 +140,16 @@ PUBLIC void add_lynxcgi_environment ARGS1( } } +#ifdef __MINGW32__ +PRIVATE int LYLoadCGI ARGS4( + CONST char *, arg, + HTParentAnchor *, anAnchor, + HTFormat, format_out, + HTStream*, sink) +{ + return -1; +} +#else PRIVATE int LYLoadCGI ARGS4( CONST char *, arg, HTParentAnchor *, anAnchor, @@ -684,6 +694,7 @@ PRIVATE int LYLoadCGI ARGS4( #endif /* LYNXCGI_LINKS */ return(status); } +#endif /* __MINGW32__ */ #ifdef GLOBALDEF_IS_MACRO #define _LYCGI_C_GLOBALDEF_1_INIT { "lynxcgi", LYLoadCGI, 0 } |