Codebase list dillo / debian/0.8.6-3 src / cookies.h
debian/0.8.6-3

Tree @debian/0.8.6-3 (Download .tar.gz)

cookies.h @debian/0.8.6-3raw · history · blame

#ifndef __COOKIES_H__
#define __COOKIES_H__

#ifdef DISABLE_COOKIES
# define a_Cookies_get(url)  g_strdup("")
# define a_Cookies_freeall() ;
  void  a_Cookies_init( void );
#else
  char *a_Cookies_get(const DilloUrl *request_url);
  void  a_Cookies_set(GList *cookie_string, const DilloUrl *set_url);
  void  a_Cookies_init( void );
  void  a_Cookies_freeall( void );
#endif

#endif /* !__COOKIES_H__ */