comparison tools/lib64gfx.c @ 1949:f8e2728c1b7f

Return DMERR_NOT_SUPPORTED from dmC64ConvertGenericImage2BMP() as it does not do anything yet.
author Matti Hamalainen <ccr@tnsp.org>
date Fri, 29 Jun 2018 22:16:51 +0300
parents 8896d5676f1b
children 02b216fae7d5
comparison
equal deleted inserted replaced
1948:5790b52c339e 1949:f8e2728c1b7f
1432 const DMC64ImageFormat *fmt, const DMC64ImageConvSpec *spec) 1432 const DMC64ImageFormat *fmt, const DMC64ImageConvSpec *spec)
1433 { 1433 {
1434 if (dst == NULL || src == NULL || fmt == NULL || spec == NULL) 1434 if (dst == NULL || src == NULL || fmt == NULL || spec == NULL)
1435 return DMERR_NULLPTR; 1435 return DMERR_NULLPTR;
1436 1436
1437 return DMERR_OK; 1437 return DMERR_NOT_SUPPORTED;
1438 } 1438 }
1439 1439
1440 1440
1441 int dmC64ConvertImage2BMP(DMC64Image **pdst, const DMImage *src, 1441 int dmC64ConvertImage2BMP(DMC64Image **pdst, const DMImage *src,
1442 const DMC64ImageFormat *fmt, const DMC64ImageConvSpec *spec) 1442 const DMC64ImageFormat *fmt, const DMC64ImageConvSpec *spec)