diff options
author | Rodrigo Arias Mallo <rodarima@gmail.com> | 2024-03-09 17:35:19 +0100 |
---|---|---|
committer | rodarima <rodarima@gmail.com> | 2024-03-09 18:43:51 +0100 |
commit | 4c56214b8c2e130d3709bdca2513aef20b7b0fab (patch) | |
tree | b8cd0c6dafb5850ba116221f6f39a62e84983aa5 /src/web.hh | |
parent | bde09c45adf0daf252fafbaf87683d3ed7eaab07 (diff) |
Use Doxygen comments for C files
Diffstat (limited to 'src/web.hh')
-rw-r--r-- | src/web.hh | 16 |
1 files changed, 8 insertions, 8 deletions
@@ -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; }; |