home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
DP Tool Club 16
/
CD_ASCQ_16_0994.iso
/
news
/
4611
/
fw16d.ins
/
SAMPLES
/
DLLCLEAR.PRG
< prev
next >
Wrap
Text File
|
1994-06-03
|
572b
|
23 lines
// Utilidad para remover DLLs que se queden abiertas en Windows
// Utility for removing opened DLLs in Windows
//
// BUILD DllClear
//----------------------------------------------------------------------------//
function Main()
local cDllName := Space( 40 )
local hDll
if MsgGet( "DLL a quitar de la memoria", "Nombre DLL:", @cDllName )
hDll = LoadLibrary( cDllName )
for n = 1 to 10
FreeLibrary( hDll )
next
endif
return
//----------------------------------------------------------------------------//