mirror of
https://github.com/netsurf-browser/netsurf
synced 2025-01-03 01:34:25 +03:00
fix nsurl references
This commit is contained in:
parent
cd7f1eceea
commit
1556055d91
@ -28,6 +28,7 @@
|
|||||||
|
|
||||||
struct gui_window;
|
struct gui_window;
|
||||||
struct llcache_handle;
|
struct llcache_handle;
|
||||||
|
struct nsurl;
|
||||||
|
|
||||||
/** Type of a download context */
|
/** Type of a download context */
|
||||||
typedef struct download_context download_context;
|
typedef struct download_context download_context;
|
||||||
@ -74,7 +75,7 @@ void download_context_abort(download_context *ctx);
|
|||||||
* \param ctx Context to retrieve URL from
|
* \param ctx Context to retrieve URL from
|
||||||
* \return URL object
|
* \return URL object
|
||||||
*/
|
*/
|
||||||
nsurl *download_context_get_url(const download_context *ctx);
|
struct nsurl *download_context_get_url(const download_context *ctx);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Retrieve the MIME type for a download
|
* Retrieve the MIME type for a download
|
||||||
|
@ -33,6 +33,8 @@
|
|||||||
#include <sys/time.h>
|
#include <sys/time.h>
|
||||||
#include <time.h>
|
#include <time.h>
|
||||||
#include <curl/curl.h>
|
#include <curl/curl.h>
|
||||||
|
#include <libwapcaplet/libwapcaplet.h>
|
||||||
|
|
||||||
#include "oslib/mimemap.h"
|
#include "oslib/mimemap.h"
|
||||||
#include "oslib/osargs.h"
|
#include "oslib/osargs.h"
|
||||||
#include "oslib/osfile.h"
|
#include "oslib/osfile.h"
|
||||||
@ -51,6 +53,7 @@
|
|||||||
#include "utils/nsurl.h"
|
#include "utils/nsurl.h"
|
||||||
#include "utils/utf8.h"
|
#include "utils/utf8.h"
|
||||||
#include "utils/utils.h"
|
#include "utils/utils.h"
|
||||||
|
#include "utils/corestrings.h"
|
||||||
|
|
||||||
#include "riscos/gui.h"
|
#include "riscos/gui.h"
|
||||||
#include "riscos/dialog.h"
|
#include "riscos/dialog.h"
|
||||||
|
Loading…
Reference in New Issue
Block a user