blob: 39030df86fc0a261e1f25647c2b5b1002da9270f (
plain) (
blame)
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
44
45
46
47
48
49
50
51
52
53
54
55
|
#ifndef RC_INVOKED
#include <nt.h>
#include <ntrtl.h>
#include <nturtl.h>
#endif
#include <windows.h>
#include <explode.h>
/*--------------------------------------------------------------------------*/
/* */
/* Function Templates */
/* */
/*--------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------*/
/* */
/* Defines */
/* */
/*--------------------------------------------------------------------------*/
BOOL
ComputeVaSpace(
HWND hDlg,
HANDLE hProcess
);
VOID
UpdateImageCommit(
HWND hDlg
);
#define LBS_MYSTYLE (LBS_NOTIFY | LBS_OWNERDRAWFIXED | WS_VSCROLL)
#define SHOVEIT(x) (MAKELONG((x),0))
#define MAXTASKNAMELEN 40
#define PROCESSVIEWDLG 10
// Define the maximum length of a string
#define MAX_STRING_LENGTH 255
#define MAX_STRING_BYTES ((MAX_STRING_LENGTH + 1) * sizeof(TCHAR))
#ifndef RC_INVOKED
#include "lsa.h"
#include "util.h"
#include "mytoken.h"
#include "acledit.h"
#include "tokedit.h"
#endif
|