i have this batch job:@echo off
if exist %1.lib del %1.lib
\masm32\bin\lib.exe %1.obj
dir %1.*
pausefor some reason lib.exe cant find any inpute file. The code i had written was: .elseif ax==IDM_OBJ2LIB
invoke GetCurrentDirectory,sizeof szInitialDir,addr szInitialDir
invoke SendMessage,hMdi,WM_MDIGETACTIVE,0,0
invoke GetWindowText,eax,addr TempBuffer,MAX_PATH
lea esi,TempBuffer
cld
loop_3:
lodsw
cmp al,'.'
jne loop_3
sub esi,2
mov word ptr [esi],0
invoke ShellExecute,hWnd,addr szShellOpen,addr szObject2Lib,addr TempBuffer,\
addr szInitialDir,SW_SHOWNORMAL
can someone help me out?