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.
18 lines
833 B
18 lines
833 B
#ifndef _SENCRYPT_H_
|
|
#define _SENCRYPT_H_
|
|
|
|
#include "prshtcpp.h" // for UpdateOpensWithInfo()
|
|
|
|
// Funcs in sencrypt.cpp
|
|
STDAPI CEncryptionContextMenuHandler_CreateInstance(IUnknown *punk, REFIID riid, void **pcpOut);
|
|
BOOL InitSinglePrshtNoDlg(FILEPROPSHEETPAGE * pfpsp);
|
|
BOOL InitMultiplePrshtNoDlg(FILEPROPSHEETPAGE* pfpsp);
|
|
STDAPI_(BOOL) ApplySingleFileAttributesNoDlg(FILEPROPSHEETPAGE* pfpsp, HWND hwnd);
|
|
|
|
// Funcs from mulpshrt.c -- use C linkage
|
|
STDAPI_(BOOL) ApplyMultipleFileAttributes(FILEPROPSHEETPAGE* pfpsp);
|
|
STDAPI_(BOOL) ApplySingleFileAttributes(FILEPROPSHEETPAGE* pfpsp);
|
|
STDAPI_(BOOL) HIDA_FillFindData(HIDA hida, UINT iItem, LPTSTR pszPath, WIN32_FIND_DATA *pfd, BOOL fReturnCompressedSize);
|
|
STDAPI_(void) UpdateSizeField(FILEPROPSHEETPAGE* pfpsp, WIN32_FIND_DATA* pfd);
|
|
|
|
#endif // _SENCRYPT_H_
|