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.
41 lines
810 B
41 lines
810 B
/*
|
|
* unknown.h - Unknown MIME type dialog description.
|
|
*/
|
|
|
|
|
|
/* Types
|
|
********/
|
|
|
|
/* DlgUNK_RunDialog() output flags */
|
|
|
|
typedef enum dlgunk_out_flags
|
|
{
|
|
/*
|
|
* MIME type association was registered. The contents of pszAppBuf are
|
|
* valid.
|
|
*/
|
|
|
|
DLGUNK_FL_REGISTERED = 0x0001,
|
|
|
|
/*
|
|
* User asked to open the file with the pszAppBuf viewer, but just this one
|
|
* time.
|
|
*/
|
|
|
|
DLGUNK_FL_ONE_SHOT_APP = 0x0002,
|
|
|
|
/* flag combinations */
|
|
|
|
ALL_DLGUNK_OUT_FLAGS = (DLGUNK_FL_REGISTERED |
|
|
DLGUNK_FL_ONE_SHOT_APP)
|
|
}
|
|
DLGUNK_OUT_FLAGS;
|
|
|
|
|
|
/* Prototypes
|
|
*************/
|
|
|
|
/* dlg_unk.c */
|
|
|
|
extern void DlgUNK_RunDialog(struct Mwin *tw, struct Params_InitStream *pParams, ThreadID tid, PDWORD pdwOutFlags, PSTR pszAppBuf, UINT ucAppBufLen);
|
|
|