The MASM Forum Archive 2004 to 2012

General Forums => The Workshop => Topic started by: Emperor on March 25, 2006, 05:45:52 PM

Title: Cannot Locate vfw32.dll
Post by: Emperor on March 25, 2006, 05:45:52 PM

include \masm32\include\vfw32.inc
includelib \masm32\lib\vfw32.lib


There's nothing wrong with my code it's just when I run my program it says it cannot locate vfw32.dll

Currently using Masm version 9.00

Any ideas?
Title: Re: Cannot Locate vfw32.dll
Post by: zcoder on March 25, 2006, 06:04:06 PM
what OS are you running?
it would appear that you do not have vfw32.dll in your system.


Zcoder....
Title: Re: Cannot Locate vfw32.dll
Post by: Emperor on March 25, 2006, 06:07:42 PM
Windows XP SP2

I tryed making a similar program in C++ which worked out fine but in Masm it cannot find the DLL
Title: Re: Cannot Locate vfw32.dll
Post by: MichaelW on March 25, 2006, 06:51:56 PM
There is no vfw32.dll on my Windows 2000 system, and according to the  DLL Help Database (http://support.microsoft.com/dllhelp/) no such file ever shipped with Windows. The Microsoft Vfw32.lib contains references to MSVFW32.dll and AVIFIL32.dll, and those files together seem to export at least most of the functions listed in the MASM32 vfw32.inc. Perhaps the MASM32 import library has a problem.

Title: Re: Cannot Locate vfw32.dll
Post by: Emperor on March 25, 2006, 06:56:41 PM
Yeah it must be a problem with the MASM32 import libray because if I edit all references to vfw32.dll into avicap32.dll my program works fine.

I guess only the creators can fix this problem.
Title: Re: Cannot Locate vfw32.dll
Post by: Mincho Georgiev on March 25, 2006, 08:11:30 PM
vf232.dll is an old version of msvfw32.dll - Microsoft Video For Windows as far as i know.
This is the lastest known for me version, but some of the AVI Functions from vfw32.inc are not exported, but the other ones are.

p.s. The library is free and i dont break any license term,posting it here.


[attachment deleted by admin]
Title: Re: Cannot Locate vfw32.dll
Post by: Emperor on March 30, 2006, 12:14:44 PM
I managed to get this working by creating seperate include/library files for each of the DLL's I needed, if you want I can post them here.