138 lines
3.3 KiB
C
138 lines
3.3 KiB
C
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
*
|
|
* The contents of this file are subject to the Netscape Public License
|
|
* Version 1.0 (the "NPL"); you may not use this file except in
|
|
* compliance with the NPL. You may obtain a copy of the NPL at
|
|
* http://www.mozilla.org/NPL/
|
|
*
|
|
* Software distributed under the NPL is distributed on an "AS IS" basis,
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL
|
|
* for the specific language governing rights and limitations under the
|
|
* NPL.
|
|
*
|
|
* The Initial Developer of this code under the NPL is Netscape
|
|
* Communications Corporation. Portions created by Netscape are
|
|
* Copyright (C) 1998 Netscape Communications Corporation. All Rights
|
|
* Reserved.
|
|
*/
|
|
/*
|
|
*
|
|
* General include that contain all general junk that is in the system.
|
|
*
|
|
* dp Suresh <dp@netscape.com>
|
|
*/
|
|
|
|
|
|
#ifndef _libfont_H_
|
|
#define _libfont_H_
|
|
|
|
#include "stdio.h" /* Use C stdio to print errors */
|
|
#include "string.h"
|
|
|
|
/*
|
|
* XXX Technically a lot of these includes should be ifdef MOZILLA_CLIENT
|
|
* XXX as the make sense only when libfont/ is used with communicator.
|
|
* XXX
|
|
* XXX Eventually when we want java applications to use libfont/ then we will take
|
|
* XXX we might want to enforce this rule strict.
|
|
*/
|
|
|
|
#include "xp_mcom.h"
|
|
#include "jritypes.h" /* For jri types jint, jsize */
|
|
#include "net.h" /* URL_Struct */
|
|
#include "merrors.h"
|
|
#include "proto.h"
|
|
#include "shist.h" /* For SHIST_GetCurrent() */
|
|
|
|
#include "prlink.h" /* NSPR PR_LoadLibrary */
|
|
|
|
/* Some of our interfaces use MWContext * and this is defined in
|
|
* the mozilla client ns/include/structs.h
|
|
*
|
|
* By doing this we will have problems working with other consumers
|
|
* like java application.
|
|
*/
|
|
#include "structs.h" /* For MWContext */
|
|
|
|
#ifndef NO_PREF_CHANGE
|
|
#ifdef MOZILLA_CLIENT
|
|
#include "prefapi.h" /* For mozilla prefs */
|
|
#endif
|
|
#endif /* NO_PREF_CHANGE */
|
|
|
|
#ifndef NO_HTML_DIALOGS_CHANGE
|
|
#include "htmldlgs.h" /* For NF_AboutData()::XP_ConvertStringToArgVec() */
|
|
#include "xpgetstr.h"
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif /* __cplusplus */
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif /* __cplusplus */
|
|
#endif /* NO_HTML_DIALOGS_CHANGE */
|
|
|
|
#include "libi18n.h" /* For unicode conversion routines */
|
|
|
|
/*
|
|
* Cross module memory allocator and deallocator.
|
|
* Until jmc works this out, we will use these.
|
|
*/
|
|
#define WF_ALLOC(n) XP_ALLOC(n)
|
|
#define WF_FREE(p) XP_FREE(p)
|
|
#define WF_REALLOC(p, n) XP_REALLOC(p, n)
|
|
|
|
/*
|
|
* Debug tracing
|
|
*/
|
|
extern int wf_trace_flag;
|
|
#define WF_TRACEMSG(msg) XP_LTRACE(wf_trace_flag, 1, msg)
|
|
|
|
/*
|
|
* Forward declaration of all interface structures.
|
|
*/
|
|
struct nfdoer;
|
|
struct nff;
|
|
struct nffbc;
|
|
struct nffbp;
|
|
struct nffbu;
|
|
struct nffmi;
|
|
struct nffp;
|
|
struct nfrc;
|
|
struct nfrf;
|
|
struct nfstrm;
|
|
struct nfdlm;
|
|
|
|
/*
|
|
* new_stream_data
|
|
* This structure is passed in as client_data to NewStream
|
|
*/
|
|
struct wf_new_stream_data {
|
|
struct nfdoer *observer;
|
|
struct nff *f;
|
|
struct nfrc *rc;
|
|
char *url_of_page;
|
|
};
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif /* __cplusplus */
|
|
void wfUrlExit(URL_Struct *urls, int status, MWContext *cx);
|
|
NET_StreamClass* wfNewStream(FO_Present_Types format_out,
|
|
void* client_data, URL_Struct* urls, MWContext* cx);
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif /* __cplusplus */
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
#include "wfMisc.h"
|
|
#endif /* __cplusplus */
|
|
|
|
#define WF_CATALOG_FILE_VERSION "1.0"
|
|
|
|
#define WF_PATH_SEP_STR ";"
|
|
|
|
#endif /* _libfont_H_ */
|