mirror of https://github.com/tongzx/nt5src
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
973 B
39 lines
973 B
/*
|
|
* shlvalid.h - Shell validation functions description.
|
|
*/
|
|
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" { /* Assume C declarations for C++. */
|
|
#endif /* __cplusplus */
|
|
|
|
|
|
/* Prototypes
|
|
*************/
|
|
|
|
/* shlvalid.c */
|
|
|
|
#ifdef DEBUG
|
|
|
|
/* interfaces */
|
|
|
|
extern BOOL IsValidPCIExtractIcon(PCIExtractIcon pciei);
|
|
extern BOOL IsValidPCINewShortcutHook(PCINewShortcutHook pcinshhk);
|
|
extern BOOL IsValidPCIShellExecuteHook(PCIShellExecuteHook pciseh);
|
|
extern BOOL IsValidPCIShellExtInit(PCIShellExtInit pcisei);
|
|
extern BOOL IsValidPCIShellLink(PCIShellLink pcisl);
|
|
extern BOOL IsValidPCIShellPropSheetExt(PCIShellPropSheetExt pcispse);
|
|
|
|
/* structures */
|
|
|
|
extern BOOL IsValidPCITEMIDLIST(PCITEMIDLIST pcidl);
|
|
extern BOOL IsValidPCPROPSHEETPAGE(PCPROPSHEETPAGE pcpsp);
|
|
extern BOOL IsValidPCSHELLEXECUTEINFO(PCSHELLEXECUTEINFO pcei);
|
|
|
|
#endif /* DEBUG */
|
|
|
|
|
|
#ifdef __cplusplus
|
|
} /* End of extern "C" {. */
|
|
#endif /* __cplusplus */
|
|
|