diff loader/vfl.c @ 29263:0f1b5b68af32

whitespace cosmetics: Remove all trailing whitespace.
author diego
date Wed, 13 May 2009 02:58:57 +0000
parents eda346733b8c
children 32725ca88fed
line wrap: on
line diff
--- a/loader/vfl.c	Tue May 12 19:25:35 2009 +0000
+++ b/loader/vfl.c	Wed May 13 02:58:57 2009 +0000
@@ -66,7 +66,7 @@
 	HDRVR		hdrv;
 	WINE_HIC	*whic;
 
-	/* Well, lParam2 is in fact a LPVIDEO_OPEN_PARMS, but it has the 
+	/* Well, lParam2 is in fact a LPVIDEO_OPEN_PARMS, but it has the
 	 * same layout as ICOPEN
 	 */
 	icopen.fccType		= 0x63646976; // "vidc" //fccType;
@@ -93,7 +93,7 @@
 	LRESULT		ret;
 
 	ret = ICSendMessage(hic,ICM_GETINFO,(long)picinfo,cb);
-	
+
 	return ret;
 }
 
@@ -129,7 +129,7 @@
 /***********************************************************************
  *		ICDecompress			[MSVFW.26]
  */
-long VFWAPIV 
+long VFWAPIV
 ICDecompress(HIC hic,long dwFlags,LPBITMAPINFOHEADER lpbiFormat,void* lpData,LPBITMAPINFOHEADER  lpbi,void* lpBits) {
 	ICDECOMPRESS	icd;
 	int result;
@@ -147,11 +147,11 @@
 /***********************************************************************
  *		ICDecompressEx			[MSVFW.26]
  */
-long VFWAPIV 
+long VFWAPIV
 ICDecompressEx(HIC hic,long dwFlags,LPBITMAPINFOHEADER lpbiFormat,void* lpData,LPBITMAPINFOHEADER  lpbi,void* lpBits) {
 	ICDECOMPRESSEX	icd;
 	int result;
-	
+
 	icd.dwFlags	= dwFlags;
 
 	icd.lpbiSrc	= lpbiFormat;
@@ -159,7 +159,7 @@
 
 	icd.lpbiDst	= lpbi;
 	icd.lpDst	= lpBits;
-	
+
 	icd.xSrc=icd.ySrc=0;
 	icd.dxSrc=lpbiFormat->biWidth;
 	icd.dySrc=abs(lpbiFormat->biHeight);
@@ -167,17 +167,17 @@
 	icd.xDst=icd.yDst=0;
 	icd.dxDst=lpbi->biWidth;
 	icd.dyDst=abs(lpbi->biHeight);
-	
+
 	//icd.ckid	= 0;
 	result=ICSendMessage(hic,ICM_DECOMPRESSEX,(long)&icd,sizeof(icd));
 	return result;
 }
 
-long VFWAPIV 
+long VFWAPIV
 ICUniversalEx(HIC hic,int command,LPBITMAPINFOHEADER lpbiFormat,LPBITMAPINFOHEADER lpbi) {
 	ICDECOMPRESSEX	icd;
 	int result;
-	
+
 	icd.dwFlags	= 0;
 
 	icd.lpbiSrc	= lpbiFormat;
@@ -185,7 +185,7 @@
 
 	icd.lpbiDst	= lpbi;
 	icd.lpDst	= 0;
-	
+
 	icd.xSrc=icd.ySrc=0;
 	icd.dxSrc=lpbiFormat->biWidth;
 	icd.dySrc=abs(lpbiFormat->biHeight);
@@ -193,7 +193,7 @@
 	icd.xDst=icd.yDst=0;
 	icd.dxDst=lpbi->biWidth;
 	icd.dyDst=abs(lpbi->biHeight);
-	
+
 	//icd.ckid	= 0;
 	result=ICSendMessage(hic,command,(long)&icd,sizeof(icd));
 	return result;