Page Menu
Home
desp's stash
Search
Configure Global Search
Log In
Files
F607161
PickDllGui.h
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Subscribers
None
PickDllGui.h
View Options
#pragma once
#include
<windows.h>
#include
"resource.h"
// WTL
#include
<atlbase.h> // base ATL classes
#include
<atlapp.h> // base WTL classes
#include
<atlwin.h> // ATL GUI classes
#include
<atlmisc.h> // WTL utility classes like CString
#include
<atlcrack.h> // WTL enhanced msg map macros
#include
<atlctrls.h> // WTL controls
#include
<vector>
#include
"ProcessAccessHelp.h"
class
PickDllGui
:
public
CDialogImpl
<
PickDllGui
>
{
public
:
enum
{
IDD
=
IDD_DLG_PICKDLL
};
BEGIN_MSG_MAP
(
PickDllGui
)
MSG_WM_INITDIALOG
(
OnInitDialog
)
COMMAND_ID_HANDLER_EX
(
IDC_BTN_PICKDLL_OK
,
OnOK
)
COMMAND_ID_HANDLER_EX
(
IDC_BTN_PICKDLL_CANCEL
,
OnCancel
)
COMMAND_ID_HANDLER_EX
(
IDCANCEL
,
OnCancel
)
END_MSG_MAP
()
PickDllGui
(
std
::
vector
<
ModuleInfo
>
&
moduleList
)
:
moduleList
(
moduleList
),
selectedModule
(
0
)
{
}
ModuleInfo
*
getSelectedModule
()
const
{
return
selectedModule
;
}
protected
:
// Variables
std
::
vector
<
ModuleInfo
>
&
moduleList
;
ModuleInfo
*
selectedModule
;
// Controls
CListViewCtrl
ListDLLSelect
;
enum
ListColumns
{
COL_PATH
,
COL_NAME
,
COL_IMAGEBASE
,
COL_IMAGESIZE
};
protected
:
// Message handlers
BOOL
OnInitDialog
(
CWindow
wndFocus
,
LPARAM
lInitParam
);
void
OnOK
(
UINT
uNotifyCode
,
int
nID
,
CWindow
wndCtl
);
void
OnCancel
(
UINT
uNotifyCode
,
int
nID
,
CWindow
wndCtl
);
// GUI functions
void
addColumnsToModuleList
(
CListViewCtrl
&
list
);
void
displayModuleList
(
CListViewCtrl
&
list
);
};
File Metadata
Details
Attached
Mime Type
text/x-c++
Expires
Wed, Apr 1, 4:20 PM (1 h, 15 m)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
e7/51/e2fec9a814e2b7999f9ce265bc39
Attached To
rSCY Scylla
Event Timeline
Log In to Comment