home *** CD-ROM | disk | FTP | other *** search
/ Tools / WinSN5.0Ver.iso / NETSCAP.50 / WIN1998.ZIP / ns / modules / libimg / public / dummy_nc.h next >
Encoding:
C/C++ Source or Header  |  1998-04-08  |  1.7 KB  |  53 lines

  1. /* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
  2.  *
  3.  * The contents of this file are subject to the Netscape Public License
  4.  * Version 1.0 (the "NPL"); you may not use this file except in
  5.  * compliance with the NPL.  You may obtain a copy of the NPL at
  6.  * http://www.mozilla.org/NPL/
  7.  *
  8.  * Software distributed under the NPL is distributed on an "AS IS" basis,
  9.  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL
  10.  * for the specific language governing rights and limitations under the
  11.  * NPL.
  12.  *
  13.  * The Initial Developer of this code under the NPL is Netscape
  14.  * Communications Corporation.  Portions created by Netscape are
  15.  * Copyright (C) 1998 Netscape Communications Corporation.  All Rights
  16.  * Reserved.
  17.  */
  18.  
  19. /* This is a dummy Net Context which the Image Library uses for network
  20.    operations in lieu of an MWContext.  It will be replaced by a true
  21.    Net Context when the Network Library is modularized. */
  22.  
  23. #ifndef _DUMMY_NC_H
  24. #define _DUMMY_NC_H
  25.  
  26. #include "xp_mem.h"
  27. #include "net.h"
  28.  
  29. typedef struct {
  30.     void *cx;                             /* Opaque pointer to an MWContext. */
  31.     NET_ReloadMethod cache_reload_policy;
  32. } IL_NetContext;
  33.  
  34. typedef URL_Struct IL_URL;
  35. typedef NET_StreamClass IL_Stream;
  36.  
  37. XP_BEGIN_PROTOS
  38. extern IL_NetContext *
  39. IL_NewDummyNetContext(MWContext *context,
  40.                       NET_ReloadMethod cache_reload_policy);
  41.  
  42. extern void
  43. IL_DestroyDummyNetContext(IL_NetContext *net_cx);
  44.  
  45. extern IL_NetContext *
  46. IL_CloneDummyNetContext(IL_NetContext *net_cx);
  47.  
  48. extern void
  49. IL_AddReferer(IL_NetContext *net_cx, URL_Struct *urls);
  50. XP_END_PROTOS
  51.  
  52. #endif /* _DUMMY_NC_H */
  53.