summaryrefslogtreecommitdiff
path: root/image/bmp.c
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2015-06-19 09:07:31 +0100
committerVincent Sanders <vince@kyllikki.org>2015-06-21 23:27:21 +0100
commit010306e1ad48c66650bff68ec0e4e485f6518a65 (patch)
treeda0fc49ce604477ce21c46b4a5817d91a2f80b28 /image/bmp.c
parentfcadb1f6f884dac4191090175655602ed5117127 (diff)
downloadnetsurf-010306e1ad48c66650bff68ec0e4e485f6518a65.tar.gz
netsurf-010306e1ad48c66650bff68ec0e4e485f6518a65.tar.bz2
Clean up doxygen errors in image handlers.
Diffstat (limited to 'image/bmp.c')
-rw-r--r--image/bmp.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/image/bmp.c b/image/bmp.c
index dfa573fee..7e992ae43 100644
--- a/image/bmp.c
+++ b/image/bmp.c
@@ -34,6 +34,7 @@
#include "image/bitmap.h"
#include "image/bmp.h"
+/** bmp context. */
typedef struct nsbmp_content {
struct content base;
@@ -45,10 +46,10 @@ typedef struct nsbmp_content {
/**
* Callback for libnsbmp; forwards the call to bitmap_create()
*
- * \param width width of image in pixels
- * \param height width of image in pixels
- * \param state a flag word indicating the initial state
- * \return an opaque struct bitmap, or NULL on memory exhaustion
+ * \param width width of image in pixels
+ * \param height width of image in pixels
+ * \param bmp_state A flag word indicating the initial state
+ * \return An opaque struct bitmap, or NULL on memory exhaustion
*/
static void *nsbmp_bitmap_create(int width, int height, unsigned int bmp_state)
{