Jump to content

FDM FILTER

From EDM2
Revision as of 22:00, 20 April 2025 by Martini (talk | contribs) (Created page with "This message is sent before a file that meets the current filter criteria is added to the File list box. ==Syntax== <PRE> param1 PSZ pFilename; Pointer to the file name.: param2 PSZ pEAType; Pointer to the .TYPE EA extended attribute.: </PRE> ==Parameters== ;pFilename (PSZ) - Input : Pointer to the file name. ;pEAType (PSZ) - Input : Pointer to the .TYPE EA extended attribute. ==Returns== ;rc (BOOL) - returns : Success indicator. ::TRUE: Ad...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

This message is sent before a file that meets the current filter criteria is added to the File list box.

Syntax

param1
PSZ pFilename;   /* Pointer to the file name. */

param2
PSZ pEAType;     /* Pointer to the .TYPE EA extended attribute. */

Parameters

pFilename (PSZ) - Input
Pointer to the file name.
pEAType (PSZ) - Input
Pointer to the .TYPE EA extended attribute.

Returns

rc (BOOL) - returns
Success indicator.
TRUE: Add the file.
FALSE: Do not add the file.

Remarks

The application checks this message to obtain the name and the .TYPE EA extended attribute of the file to be added. The application then determines whether or not the file will be added.

When FALSE is returned, the file is not added to the dialog's list box.

Default Processing

The WinDefDlgProc function does not expect to receive this message and takes no action on it other than to return FALSE.