mirror of https://github.com/lianthony/NT4.0
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
625 B
20 lines
625 B
/*
|
|
* mime.h - MIME routines description.
|
|
*/
|
|
|
|
|
|
/* Protoypes
|
|
************/
|
|
|
|
/* mime.c */
|
|
|
|
extern BOOL InitMIMEModule(void);
|
|
extern void ExitMIMEModule(void);
|
|
extern BOOL MIME_GetDescription(HTAtom atomMIMEType, PSTR pszDescBuf, UINT ucDescBufLen);
|
|
extern BOOL MIME_GetMIMEAtomFromExtension(PCSTR pcszPath, PHTAtom phtatomMIMEType);
|
|
extern ENCODING MIME_GetEncoding(HTAtom atomMIMEType);
|
|
extern ENCODING ENCODINGFromString(PCSTR pcszEncoding);
|
|
extern BOOL MIME_GetInternalHandler(HTAtom atomMIMEType, HTConverter *phtconv);
|
|
extern BOOL IsExtensionHandlerRegistered(PCSTR pcszURL);
|
|
extern BOOL IsValidENCODING(ENCODING enc);
|
|
|