aboutsummaryrefslogtreecommitdiff
path: root/src/web.hh
diff options
context:
space:
mode:
authorRodrigo Arias Mallo <rodarima@gmail.com>2024-03-09 17:35:19 +0100
committerrodarima <rodarima@gmail.com>2024-03-09 18:43:51 +0100
commit4c56214b8c2e130d3709bdca2513aef20b7b0fab (patch)
treeb8cd0c6dafb5850ba116221f6f39a62e84983aa5 /src/web.hh
parentbde09c45adf0daf252fafbaf87683d3ed7eaab07 (diff)
Use Doxygen comments for C files
Diffstat (limited to 'src/web.hh')
-rw-r--r--src/web.hh16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/web.hh b/src/web.hh
index 2e8fbf69..c9a8fe10 100644
--- a/src/web.hh
+++ b/src/web.hh
@@ -22,16 +22,16 @@ extern "C" {
typedef struct _DilloWeb DilloWeb;
struct _DilloWeb {
- DilloUrl *url; /* Requested URL */
- DilloUrl *requester; /* URL that caused this request, or
- * NULL if user-initiated. */
- BrowserWindow *bw; /* The requesting browser window [reference] */
- int flags; /* Additional info */
+ DilloUrl *url; /**< Requested URL */
+ DilloUrl *requester; /**< URL that caused this request, or
+ **< NULL if user-initiated. */
+ BrowserWindow *bw; /**< The requesting browser window [reference] */
+ int flags; /**< Additional info */
- DilloImage *Image; /* For image urls [reference] */
+ DilloImage *Image; /**< For image urls [reference] */
- int32_t bgColor; /* for image backgrounds */
- char *filename; /* Variables for Local saving */
+ int32_t bgColor; /**< for image backgrounds */
+ char *filename; /**< Variables for Local saving */
FILE *stream;
int SavedBytes;
};