Jump to content

FS FINDNOTIFYCLOSE: Difference between revisions

From EDM2
Created page with "Closes the association between a Find-Notify handle and a DosFindNotifyFirst or DosFindNotifyNext function. ==Syntax== FS_FINDNOTIFYCLOSE(handle) ==Parameters== ;handle is..."
 
Ak120 (talk | contribs)
mNo edit summary
 
Line 1: Line 1:
Closes the association between a Find-Notify handle and a DosFindNotifyFirst or DosFindNotifyNext function.  
Closes the association between a Find-Notify handle and a DosFindNotifyFirst or DosFindNotifyNext function.
 
==Syntax==
==Syntax==
  FS_FINDNOTIFYCLOSE(handle)
  FS_FINDNOTIFYCLOSE(handle)
==Parameters==
==Parameters==
;handle is the directory handle.  
;handle is the directory handle.
:This handle was returned by the FSD on a previous FS_FINDNOTIFYFIRST or FS_ FINDNOTIFYNEXT call.  
:This handle was returned by the FSD on a previous FS_FINDNOTIFYFIRST or FS_FINDNOTIFYNEXT call.
==Returns==
 
==Calling Sequence==
==Calling Sequence==
<PRE>  
<PRE>
int far pascal FS_FINDNOTIFYCLOSE(handle)
int far pascal FS_FINDNOTIFYCLOSE(handle)


unsigned short handle;
unsigned short handle;
</PRE>
</PRE>
==Remarks==
==Remarks==
Provides the mechanism for an FSD to release resources allocated on behalf of FS_FINDNOTIFYFIRST and FS_FINDNOTIFYNEXT.  
Provides the mechanism for an FSD to release resources allocated on behalf of FS_FINDNOTIFYFIRST and FS_FINDNOTIFYNEXT.


FS_FINDNOTIFYFIRST returns a handle to the find-notify request. FS_ FINDNOTIFYCLOSE closes the handle associated with that find-notify request and releases file system information related to that handle.  
FS_FINDNOTIFYFIRST returns a handle to the find-notify request. FS_FINDNOTIFYCLOSE closes the handle associated with that find-notify request and releases file system information related to that handle.


[[Category:IFS Interfaces]]
[[Category:IFS Interfaces]]
{{DISPLAYTITLE:FS_FINDNOTIFYCLOSE}}
{{DISPLAYTITLE:FS_FINDNOTIFYCLOSE}}

Latest revision as of 04:47, 10 February 2020

Closes the association between a Find-Notify handle and a DosFindNotifyFirst or DosFindNotifyNext function.

Syntax

FS_FINDNOTIFYCLOSE(handle)

Parameters

handle is the directory handle.
This handle was returned by the FSD on a previous FS_FINDNOTIFYFIRST or FS_FINDNOTIFYNEXT call.

Calling Sequence

int far pascal FS_FINDNOTIFYCLOSE(handle)

unsigned short handle;

Remarks

Provides the mechanism for an FSD to release resources allocated on behalf of FS_FINDNOTIFYFIRST and FS_FINDNOTIFYNEXT.

FS_FINDNOTIFYFIRST returns a handle to the find-notify request. FS_FINDNOTIFYCLOSE closes the handle associated with that find-notify request and releases file system information related to that handle.