-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathExplASM.asm
More file actions
437 lines (371 loc) · 9.04 KB
/
ExplASM.asm
File metadata and controls
437 lines (371 loc) · 9.04 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
.386
.model flat, stdcall
option casemap:none
option proc:private
.nolist
.nocref
WIN32_LEAN_AND_MEAN equ 1
INCL_OLE2 equ 1
_WIN32_IE equ 500h
include windows.inc
include commctrl.inc
include windowsx.inc
include shellapi.inc
include objidl.inc
include olectl.inc
include shlguid.inc
include shlobj.inc
include shlwapi.inc
include shobjidl.inc
include macros.inc
include debugout.inc
include rsrc.inc
.list
.cref
include CShellBrowser.inc
includelib kernel32.lib
includelib advapi32.lib
includelib user32.lib
includelib gdi32.lib
includelib oleaut32.lib
includelib ole32.lib
includelib shell32.lib
includelib comctl32.lib
includelib uuid.lib
;--------------------------------------------------------------------------
?MULTIWINDOW equ 0 ;explorer will create just 1 window
.data
externdef g_hInstance:HINSTANCE
externdef g_DllRefCount:DWORD
g_DllRefCount DWORD 0
g_hInstance HINSTANCE 0
g_hWndDlg HWND 0
g_oldwndproc DWORD 0
g_saverect RECT <>
g_argc DWORD 0
g_argv LPSTR NULL
.const
szOptions db "Options",0
szWindowPos db "WndDim",0
szLastFolder db "Folder",0
.code
IsInterfaceSupported proc public uses ebx esi edi pReqIF:ptr IID, pIFTab:ptr ptr IID, dwEntries:dword, pThis:ptr, ppReturn:ptr LPUNKNOWN
mov ecx,dwEntries
mov esi,pIFTab
mov ebx,0
.while (ecx)
lodsd
mov edi,eax
lodsd
mov edx,eax
mov eax,esi
mov esi,pReqIF
push ecx
mov ecx,4
repz cmpsd
pop ecx
.if (ZERO?)
mov ebx,edx
add ebx,pThis
.break
.endif
mov esi,eax
dec ecx
.endw
mov ecx,ppReturn
mov [ecx],ebx
.if (ebx)
invoke vf(ebx,IUnknown,AddRef)
mov eax,S_OK
.else
mov eax,E_NOINTERFACE
.endif
ret
IsInterfaceSupported endp
;--- setup arguments: will set g_argc and g_argv global vars
SetArguments proc public uses esi edi ebx
local argc:dword
invoke GetCommandLine
and eax,eax
jz exit
mov esi,eax
xor edi,edi ;EDI will count the number of arguments
xor edx,edx ;EDX will count the number of bytes
;needed for the arguments
;(not including the null terminators)
nextarg: ;<---- get next argument
.while (1)
lodsb
.break .if ((al != ' ') && (al != 9)) ;skip spaces and tabs
.endw
or al,al
je donescanX ;done commandline scan
inc edi ;Another argument
xor ebx,ebx ;EBX will count characters in argument
dec esi ;back up to reload character
push esi ;save start of argument
mov cl,00
.while (1)
lodsb
.break .if (!al)
.if (!cl)
.if ((al == ' ') || (al == 9)) ;white space term. argument
push ebx ;save argument length
jmp nextarg
.endif
.if ((!ebx) && al == '"') ;starts argument with "?
or cl,1
;handle argument beginning with doublequote
pop eax ;throw away old start
push esi ;and set new start
.continue
.endif
.elseif (al == '"')
and cl,0FEh
.continue
.endif
.if ((al == '\') && (byte ptr [esi] == '"'))
inc esi
.endif
inc ebx
inc edx ;one more space
.endw
push ebx ; save length of last argument
donescanX:
mov argc,edi ; Store number of arguments
add edx,edi ; add terminator bytes
inc edi ; add one for NULL pointer
shl edi,2 ; every pointer takes 4 bytes
add edx,edi ; add that space to space for strings
invoke LocalAlloc, LMEM_FIXED, edx
and eax,eax
jz exit
mov g_argv,eax
add edi,eax ; edi -> behind vector table (strings)
mov ecx,argc
mov g_argc,ecx
lea ebx,[edi-4]
mov dword ptr [ebx],0 ;mark end of argv
sub ebx,4
mov edx,ecx
.while (edx)
pop ecx ;get length
pop esi ;get address
mov [ebx],edi
sub ebx,4
.while (ecx)
lodsb
.if (al == '\')
.continue .if (byte ptr [esi] == '"')
.endif
stosb
dec ecx
.endw
xor al,al
stosb
dec edx
.endw
exit:
ret
align 4
SetArguments endp
LoadParms proc uses esi ebx edi
local dwNums:DWORD
local pNum:ptr DWORD
local szPath[MAX_PATH]:byte
local szText[128]:byte
invoke GetModuleFileName, NULL, addr szPath, sizeof szPath
lea ecx, szPath
mov dword ptr [ecx+eax-3],"ini"
invoke GetPrivateProfileString, addr szOptions, addr szWindowPos,
CStr(""), addr szText, sizeof szText, addr szPath
.if (eax)
lea ebx, szText
lea edx, g_rect.right
mov pNum, edx
mov esi, ebx
mov dwNums, 2
.while (dwNums)
mov al, [ebx]
.if ((al == ',') || (al == 0))
mov byte ptr [ebx],0
push eax
xor eax, eax
.if (esi != ebx)
invoke StrToLong, esi
.endif
mov edx, pNum
mov [edx],eax
add edx, 4
mov pNum, edx
dec dwNums
lea esi, [ebx+1]
pop eax
.break .if (al == 0)
.endif
inc ebx
.endw
.endif
lea edi, g_saverect.right
lea esi, g_rect.right
movsd
movsd
invoke GetPrivateProfileString, addr szOptions, addr szLastFolder,
CStr(""), addr g_szPath, MAX_PATH, addr szPath
ret
LoadParms endp
SaveParms proc uses esi edi
local szPath[MAX_PATH]:byte
local szText[128]:byte
invoke GetModuleFileName, NULL, addr szPath, sizeof szPath
lea ecx, szPath
mov dword ptr [ecx+eax-3],"ini"
lea esi, g_rect.right
lea edi, g_saverect.right
mov ecx, 2
repe cmpsd
.if (ZERO?)
jmp next
.endif
invoke wsprintf, addr szText, CStr("%u,%u"), g_rect.right, g_rect.bottom
invoke WritePrivateProfileString, addr szOptions, addr szWindowPos,
addr szText, addr szPath
next:
invoke WritePrivateProfileString, addr szOptions, addr szLastFolder,
addr g_szPath, addr szPath
exit:
ret
SaveParms endp
if ?MULTIWINDOW
EnumThreadWindowsCB proc hWnd:HWND, lParam:LPARAM
invoke GetWindowLong, hWnd, GWL_WNDPROC
.if (eax == mywndproc)
mov ecx, lParam
inc dword ptr [ecx]
.endif
return TRUE
EnumThreadWindowsCB endp
IsLastWindow proc
local dwNumWindows:DWORD
mov dwNumWindows, 0
invoke GetCurrentThreadId
lea ecx, dwNumWindows
invoke EnumThreadWindows, eax, offset EnumThreadWindowsCB, ecx
.if (dwNumWindows <= 1)
invoke PostQuitMessage, 0
.endif
ret
IsLastWindow endp
endif
mywndproc proc hWnd:HWND, message:DWORD, wParam:WPARAM, lParam:LPARAM
if 0
.if (message == WM_INITDIALOG)
invoke SetWindowText, hWnd, CStr("ExplorerASM")
if ?MULTIWINDOW
.elseif (message == WM_ACTIVATE)
movzx eax,word ptr wParam
.if (eax == WA_INACTIVE)
mov g_hWndDlg, NULL
.else
mov eax, hWnd
mov g_hWndDlg, eax
.endif
endif
.endif
endif
.if (message == WM_DESTROY)
if ?MULTIWINDOW
invoke IsLastWindow
else
invoke PostQuitMessage, 0
endif
.endif
invoke CallWindowProc, g_oldwndproc, hWnd, message, wParam, lParam
ret
mywndproc endp
WinMain proc hInstance:HINSTANCE,hPrevInstance:HINSTANCE,lpszCmdLine:LPSTR,iCmdShow:dword
local hWndMain:HWND
local msg:MSG
local pShellFolder:LPSHELLFOLDER
local pShellBrowser:LPSHELLBROWSER
local iccx:INITCOMMONCONTROLSEX
if 1
mov iccx.dwSize,sizeof INITCOMMONCONTROLSEX
mov iccx.dwICC, ICC_WIN95_CLASSES
invoke InitCommonControlsEx,addr iccx
else
invoke InitCommonControls
endif
invoke LoadLibrary, CStr("SHDOC401") ;someone needs that
;; invoke CoInitialize, NULL
invoke OleInitialize, NULL
invoke LoadParms
invoke SetArguments
mov ecx, g_argc
mov edx, g_argv
.while (ecx)
pushad
mov ecx, [edx]
mov al,[ecx]
.if ((al == '-') || (al == '/'))
;--------------------------- handle options
.else
.if (edx != g_argv)
invoke lstrcpy, addr g_szPath, ecx
.endif
.endif
popad
add edx, 4
dec ecx
.endw
mov g_bCreateView, TRUE
invoke SHGetDesktopFolder, addr pShellFolder
.if (eax == S_OK)
invoke Create@CShellBrowser, pShellFolder
.if (eax)
mov pShellBrowser, eax
invoke Show@CShellBrowser, eax, NULL
.if (eax)
mov hWndMain, eax
mov g_hWndDlg, eax
invoke SetWindowLong, hWndMain, GWL_WNDPROC, offset mywndproc
mov g_oldwndproc, eax
if ?MULTIWINDOW
invoke SetClassLong, hWndMain, GCL_WNDPROC, offset mywndproc
endif
.else
invoke MessageBox, 0, CStr("couldn't create main window"), 0, MB_OK
.endif
.else
invoke MessageBox, 0, CStr("couldn't create CShellBrowser object"), 0, MB_OK
.endif
invoke vf(pShellFolder, IShellFolder, Release)
.endif
.while (1) ;main message loop
invoke GetMessage, addr msg, NULL, 0, 0
.break .if (eax == 0)
.if ((msg.message == WM_KEYDOWN) || (msg.message == WM_SYSKEYDOWN))
invoke TranslateAccelerator@CShellBrowser, pShellBrowser, addr msg
.continue .if (eax == S_OK)
.endif
invoke IsDialogMessage, g_hWndDlg, addr msg
.continue .if (eax)
invoke TranslateMessage, addr msg
invoke DispatchMessage, addr msg
.endw
invoke SaveParms
exit:
;; invoke CoUninitialize
invoke OleUninitialize
ret
WinMain endp
start:
invoke GetModuleHandle,0
mov g_hInstance, eax
invoke WinMain,eax,0,0,0
if 0
invoke GetCurrentProcess
invoke TerminateProcess, eax, 0
endif
invoke ExitProcess,eax
end start