mirror of
https://github.com/rkd77/elinks.git
synced 2025-01-03 14:57:44 -05:00
443d42608d
Dos Gateway Interface was introduced by Arachne browser. I tested two cases: file/cdplayer.dgi |[7]$ecdplayer.exe $s application/pdf pdf>txt|$epdftotext $1 $2
22 lines
355 B
C
22 lines
355 B
C
#ifndef EL__MIME_BACKEND_DGI_H
|
|
#define EL__MIME_BACKEND_DGI_H
|
|
|
|
#include "main/module.h"
|
|
#include "mime/backend/common.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
extern const struct mime_backend dgi_mime_backend;
|
|
extern struct module dgi_mime_module;
|
|
|
|
struct mime_handler *get_mime_handler_dgi(char *type, int xwin);
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|