Fixed MAX_FORMATS_OUT that used to be incorrectly set.

git-svn-id: svn://10.0.0.236/trunk@17617 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
gagan%netscape.com
1999-01-12 21:34:20 +00:00
parent 704571812b
commit 06fa45f3b8

View File

@@ -121,6 +121,8 @@ typedef struct _net_MemoryCacheObject net_MemoryCacheObject;
#define FO_XMLHTML 37 /* HTML inclusions in XML */
#define FO_NGLAYOUT 38 /* NGLayout streams */
#define FO_AUTOUPDATE 39
#define FO_LASTFORMAT 40 /* If you create another FO_Format, bump this value! */
/* bitfield detectable CACHE FO's
*/
#define FO_CACHE_ONLY 64
@@ -203,6 +205,8 @@ typedef struct _net_MemoryCacheObject net_MemoryCacheObject;
#define FO_ONLY_FROM_CACHE_AND_PRESENT_INLINE (FO_ONLY_FROM_CACHE | FO_PRESENT_INLINE)
#define FO_ONLY_FROM_CACHE_AND_NGLAYOUT (FO_ONLY_FROM_CACHE | FO_NGLAYOUT)
#define MAX_FORMATS_OUT (FO_LASTFORMAT | FO_ONLY_FROM_CACHE)+1
typedef void
Net_GetUrlExitFunc (URL_Struct *URL_s, int status, MWContext *window_id);