mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-03-04 07:40:42 +00:00
Added STUBFE_CreateEmbedWindow STUBFE_SaveEmbedWindow STUBFE_RestoreEmbedWindow STUBFE_DestroyEmbedWindow STUBFE_FreeBuiltinElement STUBFE_DisplayBuiltin STUBFE_CheckConfirm STUBFE_SelectDialog.
This commit is contained in:
parent
2b68ab90a4
commit
3591ee2bd8
@ -92,6 +92,36 @@ STUBFE_FreeEmbedElement (MWContext *context,
|
||||
{
|
||||
}
|
||||
|
||||
static void
|
||||
STUBFE_CreateEmbedWindow (MWContext *context,
|
||||
NPEmbeddedApp *app)
|
||||
{
|
||||
}
|
||||
|
||||
static void
|
||||
STUBFE_SaveEmbedWindow (MWContext *context,
|
||||
NPEmbeddedApp *app)
|
||||
{
|
||||
}
|
||||
|
||||
static void
|
||||
STUBFE_RestoreEmbedWindow (MWContext *context,
|
||||
NPEmbeddedApp *app)
|
||||
{
|
||||
}
|
||||
|
||||
static void
|
||||
STUBFE_DestroyEmbedWindow (MWContext *context,
|
||||
NPEmbeddedApp *app)
|
||||
{
|
||||
}
|
||||
|
||||
static void
|
||||
STUBFE_FreeBuiltinElement(MWContext *context,
|
||||
LO_BuiltinStruct *embed)
|
||||
{
|
||||
}
|
||||
|
||||
static void
|
||||
STUBFE_FreeJavaAppElement (MWContext *context,
|
||||
struct LJAppletData *appletData)
|
||||
@ -141,6 +171,13 @@ STUBFE_DisplayEmbed (MWContext * context,
|
||||
{
|
||||
}
|
||||
|
||||
static void
|
||||
STUBFE_DisplayBuiltin (MWContext * context,
|
||||
int iLocation,
|
||||
LO_BuiltinStruct *builtin_struct)
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
static void
|
||||
STUBFE_DisplayJavaApp (MWContext * context,
|
||||
@ -357,6 +394,26 @@ STUBFE_Confirm(MWContext * context,
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
static XP_Bool
|
||||
STUBFE_CheckConfirm(MWContext *pContext,
|
||||
const char *pConfirmMessage,
|
||||
const char *pCheckMessage,
|
||||
const char *pOKMessage,
|
||||
const char *pCancelMessage,
|
||||
XP_Bool *pChecked)
|
||||
{
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
static XP_Bool
|
||||
STUBFE_SelectDialog(MWContext *pContext,
|
||||
const char *pMessage,
|
||||
const char **pList,
|
||||
int16 *pCount)
|
||||
{
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
static char*
|
||||
STUBFE_Prompt(MWContext * context,
|
||||
const char * Msg,
|
||||
|
Loading…
x
Reference in New Issue
Block a user