changeset 2325:ddd29161d258

Add argument names to prototypes.
author Matti Hamalainen <ccr@tnsp.org>
date Wed, 04 Sep 2019 13:00:42 +0300
parents dc79c64f158c
children 9f150c0e1467
files tools/lib64gfx.h
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/tools/lib64gfx.h	Tue Sep 03 11:54:06 2019 +0300
+++ b/tools/lib64gfx.h	Wed Sep 04 13:00:42 2019 +0300
@@ -265,8 +265,8 @@
          chWidth, chHeight,  // Width and height in charblocks
          aspectX, aspectY;   // Pixel aspectX/Y
 
-    int  (*convertFrom)(DMImage *, const DMC64Image *, const DMC64ImageConvSpec *spec);
-    int  (*convertTo)(DMC64Image *, const DMImage *, const DMC64ImageFormat *fmt, const DMC64ImageConvSpec *spec);
+    int  (*convertFrom)(DMImage *dst, const DMC64Image *src, const DMC64ImageConvSpec *spec);
+    int  (*convertTo)(DMC64Image *dst, const DMImage *src, const DMC64ImageFormat *fmt, const DMC64ImageConvSpec *spec);
 
     DMC64GetPixelFunc getPixel;