forked from gurnec/HashCheck
- Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathHashCheckUI.h
More file actions
Latest commit
43 lines (32 loc) · 1.01 KB
/
Copy pathHashCheckUI.h
File metadata and controls
43 lines (32 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
/**
* HashCheck Shell Extension
* Copyright (C) Kai Liu. All rights reserved.
*
* Please refer to readme.txt for information about this source code.
* Please refer to license.txt for details about distribution and modification.
**/
#ifndef__HASHCHECKUI_H__
#define__HASHCHECKUI_H__
#ifdef__cplusplus
extern"C" {
#endif
#include<windows.h>
HANDLE __fastcall CreateThreadCRT( PVOIDpThreadProc, PVOIDpvParam );
// HashSave
VOIDWINAPIHashSaveStart( HWNDhWndOwner, HSIMPLELISThListInput );
// HashProp
UINTCALLBACKHashPropCallback( HWNDhWnd, UINTuMsg, LPPROPSHEETPAGEppsp );
INT_PTRCALLBACKHashPropDlgProc( HWNDhWnd, UINTuMsg, WPARAMwParam, LPARAMlParam );
// HashVerify
DWORDWINAPIHashVerifyThread( PTSTRpszPath );
// Activation context functions
ULONG_PTRWINAPIActivateManifest( BOOLbActivate );
__forceinline VOIDWINAPIDeactivateManifest( ULONG_PTRuCookie )
{
if (uCookie)
DeactivateActCtx(0, uCookie);
}
#ifdef__cplusplus
}
#endif
#endif