Artifact 712a3a4eba1fcc648c51b28ba6197080326d60f1:
- File
source/asmedit_utils.asm
— part of check-in
[177549be42]
at
2016-09-17 08:09:40
on branch unicode_fix
— A very old bug preventing paste with vertical selection has been fixed.
All block (including clipboard) operations seems to work now with unicode strings. (user: johnfound size: 431) [more...]
; Returns the caret position of the editor [.hEditor] ; EAX - X position from 1 ; EDX - Y position (line number) from 1 proc GetEditorCaretPos, .hEditor .aepos AEPOS begin push ecx lea eax, [.aepos] invoke SendMessageW, [.hEditor], AEM_GETPOS, eax, 0 mov eax, [.aepos.caretPosition] mov edx, [.aepos.caretLine] pop ecx return endp