-
Notifications
You must be signed in to change notification settings - Fork 1
/
Today.Asm
898 lines (717 loc) · 27.4 KB
/
Today.Asm
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
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
;=====================================================================================
; x64dbg plugin SDK For Assembler x86 - fearless 2017 - www.LetTheLight.in
;
; Today.asm
;
;-------------------------------------------------------------------------------------
.686
.MMX
.XMM
.model flat,stdcall
option casemap:none
;TRAYBALLOON EQU 1
;DEBUG32 EQU 1
IFDEF DEBUG32
PRESERVEXMMREGS equ 1
includelib M:\Masm32\lib\Debug32.lib
DBG32LIB equ 1
DEBUGEXE textequ <'M:\Masm32\DbgWin.exe'>
include M:\Masm32\include\debug32.inc
ENDIF
Include x64dbgpluginsdk.inc ; Main x64dbg Plugin SDK for your program, and prototypes for the main exports
Include Today.inc ; plugin's include file
include TodayIni.asm
include dayinfo.asm
include fooddays.asm
;=====================================================================================
.CONST
PLUGIN_VERSION EQU 1
.DATA
PLUGIN_NAME DB "Today",0
.DATA?
;-------------------------------------------------------------------------------------
; GLOBAL Plugin SDK variables
;-------------------------------------------------------------------------------------
PUBLIC pluginHandle
PUBLIC hwndDlg
PUBLIC hMenu
PUBLIC hMenuDisasm
PUBLIC hMenuDump
PUBLIC hMenuStack
pluginHandle DD ?
hwndDlg DD ?
hMenu DD ?
hMenuDisasm DD ?
hMenuDump DD ?
hMenuStack DD ?
;-------------------------------------------------------------------------------------
.CODE
;=====================================================================================
; Main entry function for a DLL file - required.
;-------------------------------------------------------------------------------------
DllMain PROC hinstDLL:HINSTANCE, fdwReason:DWORD, lpvReserved:DWORD
.IF fdwReason == DLL_PROCESS_ATTACH
mov eax, hinstDLL
mov hInstance, eax
.ENDIF
mov eax,TRUE
ret
DllMain ENDP
;=====================================================================================
; pluginit - Called by debugger when plugin.dp32 is loaded - needs to be EXPORTED
;
; Arguments: initStruct - a pointer to a PLUG_INITSTRUCT structure
;
; Notes: you must fill in the pluginVersion, sdkVersion and pluginName members.
; The pluginHandle is obtained from the same structure - it may be needed in
; other function calls.
;
; you can call your own setup routine from within this function to setup
; menus and commands, and pass the initStruct parameter to this function.
;
;-------------------------------------------------------------------------------------
pluginit PROC C PUBLIC USES EBX initStruct:DWORD
mov ebx, initStruct
; Fill in required information of initStruct, which is a pointer to a PLUG_INITSTRUCT structure
mov eax, PLUGIN_VERSION
mov [ebx].PLUG_INITSTRUCT.pluginVersion, eax
mov eax, PLUG_SDKVERSION
mov [ebx].PLUG_INITSTRUCT.sdkVersion, eax
Invoke lstrcpy, Addr [ebx].PLUG_INITSTRUCT.pluginName, Addr PLUGIN_NAME
mov ebx, initStruct
mov eax, [ebx].PLUG_INITSTRUCT.pluginHandle
mov pluginHandle, eax
; Do any other initialization here
; Construct plugin's .ini file from module filename
Invoke GetModuleFileName, 0, Addr szModuleFilename, SIZEOF szModuleFilename
Invoke GetModuleFileName, hInstance, Addr TodayIni, SIZEOF TodayIni
Invoke szLen, Addr TodayIni
lea ebx, TodayIni
add ebx, eax
sub ebx, 4 ; move back past 'dp32' extention
mov byte ptr [ebx], 0 ; null so we can use lstrcat
Invoke szCatStr, ebx, Addr szIni ; add 'ini' to end of string instead
mov eax, TRUE
ret
pluginit ENDP
;=====================================================================================
; plugstop - Called by debugger when the plugin.dp32 is unloaded - needs to be EXPORTED
;
; Arguments: none
;
; Notes: perform cleanup operations here, clearing menus and other housekeeping
;
;-------------------------------------------------------------------------------------
plugstop PROC C PUBLIC
; remove any menus, unregister any callbacks etc
Invoke _plugin_menuclear, hMenu
Invoke GuiAddLogMessage, Addr szTodayUnloaded
.IF hTI != NULL
Invoke TrayIconDestroy, hTI
.ENDIF
.IF hTM != NULL
Invoke TrayMenuHideTrayIcon, hTM
.ENDIF
mov eax, TRUE
ret
plugstop ENDP
;=====================================================================================
; plugsetup - Called by debugger to initialize your plugins setup - needs to be EXPORTED
;
; Arguments: setupStruct - a pointer to a PLUG_SETUPSTRUCT structure
;
; Notes: setupStruct contains useful handles for use within x64dbg, mainly Qt
; menu handles (which are not supported with win32 api) and the main window
; handle with this information you can add your own menus and menu items
; to an existing menu, or one of the predefined supported right click
; context menus: hMenuDisam, hMenuDump & hMenuStack
;
; plugsetup is called after pluginit.
;-------------------------------------------------------------------------------------
plugsetup PROC C PUBLIC USES EBX setupStruct:DWORD
LOCAL hIconData:ICONDATA
LOCAL hIconDataOptions:ICONDATA
mov ebx, setupStruct
; Extract handles from setupStruct which is a pointer to a PLUG_SETUPSTRUCT structure
mov eax, [ebx].PLUG_SETUPSTRUCT.hwndDlg
mov hwndDlg, eax
mov eax, [ebx].PLUG_SETUPSTRUCT.hMenu
mov hMenu, eax
mov eax, [ebx].PLUG_SETUPSTRUCT.hMenuDisasm
mov hMenuDisasm, eax
mov eax, [ebx].PLUG_SETUPSTRUCT.hMenuDump
mov hMenuDump, eax
mov eax, [ebx].PLUG_SETUPSTRUCT.hMenuStack
mov hMenuStack, eax
Invoke GuiGetWindowHandle
mov hwndDlg, eax
mov hWndx64dbg, eax
; Do any setup here: add menus, menu items, callback and commands etc
Invoke _plugin_menuaddentry, hMenu, MENU_TODAY, Addr szTodayis
Invoke _plugin_menuadd, hMenu, Addr szOptions
mov hMenuOptions, eax
Invoke _plugin_menuaddentry, hMenuOptions, MENU_TOGGLE_TITLE, Addr szToggleTitle
Invoke _plugin_menuaddentry, hMenuOptions, MENU_TOGGLE_ICON, Addr szToggleIcon
IFDEF TRAYBALLOON
Invoke _plugin_menuaddentry, hMenuOptions, MENU_SHOW_TRAYICON, Addr szShowTrayIcon
ENDIF
Invoke _plugin_menuaddentry, hMenuOptions, MENU_PERSIST_ICON, Addr szPersistIconDebug
Invoke _plugin_menuaddseparator, hMenu
Invoke _plugin_menuaddentry, hMenu, MENU_ABOUT, Addr szAbout
Invoke TD_LoadMenuIcon, IMG_MENU_LTLI, Addr hIconData
.IF eax == TRUE
Invoke _plugin_menuentryseticon, pluginHandle, MENU_ABOUT, Addr hIconData
.ENDIF
Invoke TD_LoadMenuIcon, IMG_MENU_CHECK, Addr hImgCheck
Invoke TD_LoadMenuIcon, IMG_MENU_NOCHECK, Addr hImgNoCheck
Invoke TD_LoadMenuIcon, IMG_MENU_TODAY, Addr hIconData
.IF eax == TRUE
Invoke _plugin_menuseticon, hMenu, Addr hIconData
Invoke _plugin_menuseticon, hMenuOptions, Addr hIconData
Invoke _plugin_menuentryseticon, pluginHandle, MENU_TODAY, Addr hIconData
.ENDIF
Invoke IniGetTodayToggleTitle
mov g_TodayToggleTitle, eax
.IF eax == 1
Invoke _plugin_menuentryseticon, pluginHandle, MENU_TOGGLE_TITLE, Addr hImgCheck
.ELSE
Invoke _plugin_menuentryseticon, pluginHandle, MENU_TOGGLE_TITLE, Addr hImgNoCheck
.ENDIF
Invoke IniGetTodayToggleIcon
mov g_TodayToggleIcon, eax
.IF eax == 1
Invoke _plugin_menuentryseticon, pluginHandle, MENU_TOGGLE_ICON, Addr hImgCheck
.ELSE
Invoke _plugin_menuentryseticon, pluginHandle, MENU_TOGGLE_ICON, Addr hImgNoCheck
.ENDIF
Invoke IniGetPersistIcon
mov g_PersistIcon, eax
.IF eax == 1
Invoke _plugin_menuentryseticon, pluginHandle, MENU_PERSIST_ICON, Addr hImgCheck
.ELSE
Invoke _plugin_menuentryseticon, pluginHandle, MENU_PERSIST_ICON, Addr hImgNoCheck
.ENDIF
IFDEF TRAYBALLOON
Invoke IniGetShowTrayIconBalloon
mov g_ShowTrayIcon, eax
.IF eax == 1
Invoke _plugin_menuentryseticon, pluginHandle, MENU_SHOW_TRAYICON, Addr hImgCheck
.ELSE
Invoke _plugin_menuentryseticon, pluginHandle, MENU_SHOW_TRAYICON, Addr hImgNoCheck
.ENDIF
ENDIF
Invoke LoadIcon, hInstance, ICO_X64DBG
mov hx64dbgicon, eax
Invoke GuiAddLogMessage, Addr szTodayInfo
Invoke Today, TRUE
ret
plugsetup ENDP
;=====================================================================================
; CBMENUENTRY - Called by debugger when a menu item is clicked - needs to be EXPORTED
;
; Arguments: cbType
; cbInfo - a pointer to a PLUG_CB_MENUENTRY structure. The hEntry contains
; the resource id of menu item identifiers
;
; Notes: hEntry can be used to determine if the user has clicked on your plugins
; menu item(s) and to do something in response to it.
; Needs to be PROC C type procedure call to be compatible with debugger
;-------------------------------------------------------------------------------------
CBMENUENTRY PROC C PUBLIC USES EBX cbType:DWORD, cbInfo:DWORD
LOCAL hIcon:DWORD
;LOCAL hWndx64dbg:DWORD
mov ebx, cbInfo
mov eax, [ebx].PLUG_CB_MENUENTRY.hEntry
.IF eax == MENU_TODAY
Invoke Today, FALSE
mov g_MainIconChanged, 1
;Invoke DialogBoxParam, hInstance, IDD_PluginDlg, hwndDlg, OFFSET TodayDlgProc, NULL
; Invoke GuiGetWindowHandle
; mov hWndx64dbg, eax
; Invoke GetWindowText, hWndx64dbg, Addr szMainTitle, SIZEOF szMainTitle
; Invoke szCatStr, Addr szMainTitle, Addr szPausedTitle
; Invoke SetWindowText, hWndx64dbg, Addr szMainTitle
; Invoke LoadIcon, hInstance, ICO_PAUSE
; mov hIcon, eax
; Invoke SendMessage, hWndx64dbg, WM_SETICON, ICON_SMALL, hIcon
; Invoke GuiAddLogMessage, Addr szLogPaused
.ELSEIF eax == MENU_TOGGLE_TITLE
Invoke IniGetTodayToggleTitle
.IF eax == 1
mov g_TodayToggleTitle, 0
Invoke IniSetTodayToggleTitle, 0
Invoke _plugin_menuentryseticon, pluginHandle, MENU_TOGGLE_TITLE, Addr hImgNoCheck
.ELSE
mov g_TodayToggleTitle, 1
Invoke IniSetTodayToggleTitle, 1
Invoke _plugin_menuentryseticon, pluginHandle, MENU_TOGGLE_TITLE, Addr hImgCheck
.ENDIF
.ELSEIF eax == MENU_TOGGLE_ICON
Invoke IniGetTodayToggleIcon
.IF eax == 1
mov g_TodayToggleIcon, 0
Invoke IniSetTodayToggleIcon, 0
Invoke _plugin_menuentryseticon, pluginHandle, MENU_TOGGLE_ICON, Addr hImgNoCheck
; reset icon back to x64dbg one
Invoke SendMessage, hWndx64dbg, WM_SETICON, ICON_SMALL, hx64dbgicon
mov g_MainIconChanged, 0
.ELSE
mov g_TodayToggleIcon, 1
Invoke IniSetTodayToggleIcon, 1
Invoke _plugin_menuentryseticon, pluginHandle, MENU_TOGGLE_ICON, Addr hImgCheck
.ENDIF
.ELSEIF eax == MENU_PERSIST_ICON
Invoke IniGetPersistIcon
.IF eax == 1
mov g_PersistIcon, 0
Invoke IniSetPersistIcon, 0
Invoke _plugin_menuentryseticon, pluginHandle, MENU_PERSIST_ICON, Addr hImgNoCheck
.ELSE
mov g_PersistIcon, 1
Invoke IniSetPersistIcon, 1
Invoke _plugin_menuentryseticon, pluginHandle, MENU_PERSIST_ICON, Addr hImgCheck
.ENDIF
IFDEF TRAYBALLOON
.ELSEIF eax == MENU_SHOW_TRAYICON
Invoke IniGetShowTrayIconBalloon
.IF eax == 1
mov g_ShowTrayIcon, 0
Invoke IniSetShowTrayIconBalloon, 0
Invoke _plugin_menuentryseticon, pluginHandle, MENU_SHOW_TRAYICON, Addr hImgNoCheck
.ELSE
mov g_ShowTrayIcon, 1
Invoke IniSetShowTrayIconBalloon, 1
Invoke _plugin_menuentryseticon, pluginHandle, MENU_SHOW_TRAYICON, Addr hImgCheck
.ENDIF
ENDIF
.ELSEIF eax == MENU_ABOUT
Invoke MessageBox, hwndDlg, Addr szTodayMsgText, Addr szTodayMsgTitle, MB_OK
.ENDIF
mov eax, TRUE
ret
CBMENUENTRY ENDP
;=====================================================================================
; CBRESUMEDEBUG
;-------------------------------------------------------------------------------------
CBRESUMEDEBUG PROC C PUBLIC USES EBX cbType:DWORD, cbInfo:DWORD
.IF g_MainIconChanged == 1 && g_PersistIcon == 0
; reset icon back to x64dbg one
Invoke SendMessage, hWndx64dbg, WM_SETICON, ICON_SMALL, hx64dbgicon
mov g_MainIconChanged, 0
.ENDIF
mov eax, TRUE
ret
CBRESUMEDEBUG ENDP
;=====================================================================================
; CBSTEPPED
;-------------------------------------------------------------------------------------
CBSTEPPED PROC C PUBLIC USES EBX cbType:DWORD, cbInfo:DWORD
.IF g_MainIconChanged == 1 && g_PersistIcon == 0
; reset icon back to x64dbg one
Invoke SendMessage, hWndx64dbg, WM_SETICON, ICON_SMALL, hx64dbgicon
mov g_MainIconChanged, 0
.ENDIF
mov eax, TRUE
ret
CBSTEPPED ENDP
;=====================================================================================
; CBINITDEBUG
;-------------------------------------------------------------------------------------
CBINITDEBUG PROC C PUBLIC USES EBX cbType:DWORD, cbInfo:DWORD
.IF g_MainIconChanged == 1 && g_PersistIcon == 0
; reset icon back to x64dbg one
Invoke SendMessage, hWndx64dbg, WM_SETICON, ICON_SMALL, hx64dbgicon
mov g_MainIconChanged, 0
.ENDIF
mov eax, TRUE
ret
CBINITDEBUG ENDP
;=====================================================================================
; CBATTACH
;-------------------------------------------------------------------------------------
CBATTACH PROC C PUBLIC USES EBX cbType:DWORD, cbInfo:DWORD
.IF g_MainIconChanged == 1 && g_PersistIcon == 0
; reset icon back to x64dbg one
Invoke SendMessage, hWndx64dbg, WM_SETICON, ICON_SMALL, hx64dbgicon
mov g_MainIconChanged, 0
.ENDIF
mov eax, TRUE
ret
CBATTACH ENDP
;=====================================================================================
; Today Dialog Procedure
;-------------------------------------------------------------------------------------
TodayDlgProc PROC hWin:HWND,iMsg:DWORD,wParam:WPARAM, lParam:LPARAM
mov eax, iMsg
.IF eax == WM_INITDIALOG
; Any initialization here
.ELSEIF eax == WM_CLOSE
Invoke EndDialog, hWin, NULL
.ELSEIF eax == WM_COMMAND
mov eax, wParam
and eax, 0FFFFh
.IF eax == IDC_PLUGINDLG_OK
Invoke SendMessage, hWin, WM_CLOSE, NULL, NULL
.ENDIF
.ELSE
mov eax, FALSE
ret
.ENDIF
mov eax, TRUE
ret
TodayDlgProc ENDP
;=====================================================================================
; Today
;-------------------------------------------------------------------------------------
Today PROC USES EBX bInitFlag:DWORD
LOCAL dwCurrentIndex:DWORD
LOCAL dwTodayInfoAddress:DWORD
LOCAL dwTodayDate:DWORD
LOCAL pTodayIsData:DWORD
LOCAL lpszTodayEntry:DWORD
LOCAL nIcons:DWORD
LOCAL dwIcon:DWORD
LOCAL hIcon:DWORD
Invoke RtlZeroMemory, Addr szTodayIsLineMsg, SIZEOF szTodayIsLineMsg
mov dwTodayInfoAddress, 0
mov dwTodayDate, 0
mov nIcons, 0
Invoke DTGetDateTime, Addr szDateTimeTitle, LONGDDMM
Invoke DTGetDateTime, Addr szDateTime, MMDD
Invoke DTDateToDwordDateTime, Addr szDateTime, MMDD
bswap eax
shr eax, 16d
;PrintDec eax
mov dwTodayDate, eax
IFDEF DEBUG32
PrintDec dwTodayDate
ENDIF
;lea eax, dbTestDate
;mov ebx, [eax]
;PrintDec ebx
;lea eax, dwTestDate
;mov ebx, [eax]
;PrintDec ebx
lea eax, TodayIs
mov pTodayIsData, eax
mov dwCurrentIndex, -1
mov eax, 0
.WHILE eax != -1
IFDEF DEBUG32
PrintText 'ALL DAYS'
ENDIF
Invoke FindTodayIndexInList, dwTodayDate, Addr AllDays, dwCurrentIndex, Addr dwTodayInfoAddress
mov dwCurrentIndex, eax
.IF eax != -1
mov eax, dwTotalTodayIs
.IF eax < MAX_TODAYIS_ENTRIES
.IF eax > 0
Invoke IsTodayIsEntryUnique, dwTodayInfoAddress, Addr TodayIs
.IF eax == TRUE
Invoke RtlMoveMemory, pTodayIsData, dwTodayInfoAddress, SIZEOF DAYINFO
add pTodayIsData, SIZEOF DAYINFO
inc dwTotalTodayIs
.ELSE
IFDEF DEBUG32
PrintText 'Duplicate'
ENDIF
.ENDIF
.ELSE
Invoke RtlMoveMemory, pTodayIsData, dwTodayInfoAddress, SIZEOF DAYINFO
add pTodayIsData, SIZEOF DAYINFO
inc dwTotalTodayIs
.ENDIF
.ENDIF
.ENDIF
mov eax, dwCurrentIndex
.ENDW
IFDEF DEBUG32
PrintDec dwTotalTodayIs
ENDIF
mov dwCurrentIndex, -1
mov eax, 0
.WHILE eax != -1
IFDEF DEBUG32
PrintText 'FOOD_DAYS'
ENDIF
Invoke FindTodayIndexInList, dwTodayDate, Addr FOOD_DAYS , dwCurrentIndex, Addr dwTodayInfoAddress
mov dwCurrentIndex, eax
.IF eax != -1
mov eax, dwTotalTodayIs
.IF eax < MAX_TODAYIS_ENTRIES
.IF eax > 0
Invoke IsTodayIsEntryUnique, dwTodayInfoAddress, Addr TodayIs
.IF eax == TRUE
Invoke RtlMoveMemory, pTodayIsData, dwTodayInfoAddress, SIZEOF DAYINFO
add pTodayIsData, SIZEOF DAYINFO
inc dwTotalTodayIs
.ELSE
IFDEF DEBUG32
PrintText 'Duplicate'
ENDIF
.ENDIF
.ELSE
Invoke RtlMoveMemory, pTodayIsData, dwTodayInfoAddress, SIZEOF DAYINFO
add pTodayIsData, SIZEOF DAYINFO
inc dwTotalTodayIs
.ENDIF
.ENDIF
.ENDIF
mov eax, dwCurrentIndex
.ENDW
IFDEF DEBUG32
PrintDec dwTotalTodayIs
ENDIF
;
;mov eax, dwTotalTodayIs
;mov ebx, SIZEOF DAYINFO
;mul ebx
lea ebx, TodayIs
mov pTodayIsData, ebx
;DbgDump ebx, eax
.IF dwTotalTodayIs > 0
;Invoke szCopy, Addr szTodayIsHeading, Addr szTodayIsLineMsg
Invoke szCopy, Addr szTodayIsHead1, Addr szTodayIsLineMsg
Invoke szCatStr, Addr szTodayIsLineMsg, Addr szDateTimeTitle
Invoke szCatStr, Addr szTodayIsLineMsg, Addr szTodayIsBody
Invoke GuiAddLogMessage, Addr szTodayIsLineMsg
Invoke szCopy, Addr szTodayIsTrayHead1, Addr szTrayTitle
Invoke szCatStr, Addr szTrayTitle, Addr szDateTimeTitle
Invoke RtlZeroMemory, Addr szTrayMessage, SIZEOF szTrayMessage
mov dwCurrentIndex, 0
mov eax, dwCurrentIndex
.WHILE eax < dwTotalTodayIs
mov ebx, pTodayIsData
mov eax, [ebx].DAYINFO.DayIcon
mov dwIcon, eax
.IF eax != 0
mov eax, nIcons
mov ebx, 4d
mul ebx
lea ebx, IconArray
add ebx, eax
mov eax, pTodayIsData
mov [ebx], eax
inc nIcons
.ENDIF
mov ebx, pTodayIsData
lea eax, [ebx].DAYINFO.DayName
mov lpszTodayEntry, eax
Invoke szCopy, Addr szTodayIsEntryMark, Addr szTodayIsLineMsg
Invoke szCatStr, Addr szTodayIsLineMsg, lpszTodayEntry
Invoke szCatStr, Addr szTodayIsLineMsg, Addr szCRLF
Invoke GuiAddLogMessage, Addr szTodayIsLineMsg
Invoke szCatStr, Addr szTrayMessage, Addr szTodayIsTrayEntry
Invoke szCatStr, Addr szTrayMessage, lpszTodayEntry
Invoke szCatStr, Addr szTrayMessage, Addr szCRLF
add pTodayIsData, SIZEOF DAYINFO
inc dwCurrentIndex
mov eax, dwCurrentIndex
.ENDW
Invoke szCopy, Addr szCRLF, Addr szTodayIsLineMsg
Invoke GuiAddLogMessage, Addr szTodayIsLineMsg
.ELSE
Invoke szCopy, Addr szTodayIsHead1, Addr szTodayIsLineMsg
Invoke szCatStr, Addr szTodayIsLineMsg, Addr szDateTimeTitle
Invoke szCatStr, Addr szTodayIsLineMsg, Addr szTodayIsNormal
;Invoke szCopy, Addr szTodayIsNothing, Addr szTodayIsLineMsg
Invoke GuiAddLogMessage, Addr szTodayIsLineMsg
.ENDIF
;PrintDec nIcons
.IF nIcons > 0
.IF nIcons > 1
invoke GetTickCount
invoke nseed, eax
invoke nrandom, nIcons
mov ebx, 4
mul ebx
lea ebx, IconArray
add ebx, eax
mov eax, [ebx]
.ELSE
lea ebx, IconArray
mov eax, [ebx]
.ENDIF
mov pTodayIsData, eax
mov ebx, eax
mov eax, [ebx].DAYINFO.DayIcon
mov dwIcon, eax
.IF g_TodayToggleIcon == 1
Invoke LoadIcon, hInstance, dwIcon
mov hIcon, eax
Invoke SendMessage, hWndx64dbg, WM_SETICON, ICON_SMALL, hIcon
mov g_MainIconChanged, 1
.ENDIF
.IF g_TodayToggleTitle == 1
mov ebx, pTodayIsData
lea eax, [ebx].DAYINFO.DayName
mov lpszTodayEntry, eax
Invoke DTGetDateTime, Addr szDateTimeTitle, LONGDDMM
Invoke szCopy, Addr szx64dbgTitle, Addr szTitle
Invoke szCatStr, Addr szTitle, Addr szDateTimeTitle
Invoke szCatStr, Addr szTitle, Addr szTitleDateBreak
Invoke szCatStr, Addr szTitle, lpszTodayEntry
Invoke SetWindowText, hWndx64dbg, Addr szTitle
.ENDIF
.IF bInitFlag == TRUE
IFDEF TRAYBALLOON
.IF g_ShowTrayIcon == 1
mov ebx, pTodayIsData
lea eax, [ebx].DAYINFO.DayName
mov lpszTodayEntry, eax
Invoke TrayIconCreate, NULL, TRAYICON, hx64dbgicon, NULL ;hWndx64dbg Addr szTodayTrayInfo
mov hTI, eax
Invoke TrayIconShowNotification, hTI, lpszTodayEntry, Addr szTrayTitle, 5000, TMNI_INFO
.ENDIF
ENDIF
.ENDIF
.ENDIF
ret
Today ENDP
;-------------------------------------------------------------------------------------
; Finds todays date in list and returns an index to that entry, or -1 if no more found
; index can be passed into dwStartIndex to continue searching from that point on for
; other calls.
;-------------------------------------------------------------------------------------
FindTodayIndexInList PROC USES EBX dwDate:DWORD, lpdwList:DWORD, dwStartIndex:DWORD, lpIndexAddress:DWORD
LOCAL dwCurrentIndex:DWORD
LOCAL pDayInfoData:DWORD
.IF lpdwList == NULL
.IF lpIndexAddress != NULL
mov ebx, lpIndexAddress
mov eax, 0
mov [ebx], eax
.ENDIF
mov eax, -1
ret
.ENDIF
.IF dwDate == NULL
.IF lpIndexAddress != NULL
mov ebx, lpIndexAddress
mov eax, 0
mov [ebx], eax
.ENDIF
mov eax, -1
ret
.ENDIF
.IF dwStartIndex == -1
mov dwCurrentIndex, 0
mov eax, lpdwList
mov pDayInfoData, eax
.ELSE
mov eax, dwStartIndex
inc eax
mov dwCurrentIndex, eax
mov ebx, SIZEOF DAYINFO
mul ebx
add eax, lpdwList
mov pDayInfoData, eax
.ENDIF
.WHILE TRUE
mov ebx, pDayInfoData
movzx eax, word ptr [ebx].DAYINFO.DayDate
.IF eax == 0
.IF lpIndexAddress != NULL
mov ebx, lpIndexAddress
mov eax, 0
mov [ebx], eax
.ENDIF
mov eax, -1
ret
.ENDIF
;PrintDec eax
;PrintDec dwDate
.IF eax == dwDate
.IF lpIndexAddress != NULL
mov ebx, lpIndexAddress
mov eax, pDayInfoData
mov [ebx], eax
.ELSE
mov eax, -1
ret
.ENDIF
mov eax, dwCurrentIndex
ret
.ENDIF
add pDayInfoData, SIZEOF DAYINFO
inc dwCurrentIndex
.ENDW
ret
FindTodayIndexInList ENDP
;-------------------------------------------------------------------------------------
; Returns TRUE or FALSE
;-------------------------------------------------------------------------------------
IsTodayIsEntryUnique PROC USES EBX ECX EDX lpIndexAddress:DWORD, lpTodayIs:DWORD
LOCAL dwCurrentIndex:DWORD
LOCAL pTodayIsData:DWORD
mov eax, lpTodayIs
mov pTodayIsData, eax
mov dwCurrentIndex, 0
mov eax, 0
.WHILE eax < MAX_TODAYIS_ENTRIES
mov ebx, pTodayIsData
lea eax, [ebx].DAYINFO.DayName
mov edx, lpIndexAddress
lea ecx, [edx].DAYINFO.DayName
Invoke szCmp, eax, ecx
.IF eax == 0 ; no match
.ELSE
mov eax, FALSE
ret
.ENDIF
add pTodayIsData, SIZEOF DAYINFO
inc dwCurrentIndex
mov eax, dwCurrentIndex
.ENDW
mov eax, TRUE
ret
IsTodayIsEntryUnique ENDP
;=====================================================================================
; TD_LoadMenuIcon - Loads RT_RCDATA png resource and assigns it to ICONDATA
; Returns TRUE in eax if succesful or FALSE otherwise.
;-------------------------------------------------------------------------------------
TD_LoadMenuIcon PROC USES EBX dwImageResourceID:DWORD, lpIconData:DWORD
LOCAL hRes:DWORD
; Load image for our menu item
Invoke FindResource, hInstance, dwImageResourceID, RT_RCDATA ; load png image as raw data
.IF eax != NULL
mov hRes, eax
Invoke SizeofResource, hInstance, hRes
.IF eax != 0
.IF lpIconData != NULL
mov ebx, lpIconData
mov [ebx].ICONDATA.size_, eax
.ELSE
mov eax, FALSE
ret
.ENDIF
Invoke LoadResource, hInstance, hRes
.IF eax != NULL
Invoke LockResource, eax
.IF eax != NULL
.IF lpIconData != NULL
mov ebx, lpIconData
mov [ebx].ICONDATA.data, eax
mov eax, TRUE
.ELSE
mov eax, FALSE
.ENDIF
.ELSE
;PrintText 'Failed to lock resource'
mov eax, FALSE
.ENDIF
.ELSE
;PrintText 'Failed to load resource'
mov eax, FALSE
.ENDIF
.ELSE
;PrintText 'Failed to get resource size'
mov eax, FALSE
.ENDIF
.ELSE
;PrintText 'Failed to find resource'
mov eax, FALSE
.ENDIF
ret
TD_LoadMenuIcon ENDP
END DllMain