2015-06-15 12:45:23 -04:00
|
|
|
! Copyright (C) 2015 Dimage Sapelkin.
|
|
|
|
! See http://factorcode.org/license.txt for BSD license.
|
2015-06-15 23:09:45 -04:00
|
|
|
USING: alien.data alien.strings combinators editors
|
|
|
|
editors.brackets kernel make math.parser namespaces quotations
|
|
|
|
sequences system windows.advapi32 windows.registry
|
|
|
|
windows.registry.private windows.types windows.errors ;
|
2015-06-15 12:45:23 -04:00
|
|
|
|
|
|
|
IN: editors.brackets.windows
|
|
|
|
|
|
|
|
M: windows brackets-path
|
|
|
|
HKEY_LOCAL_MACHINE
|
|
|
|
"SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\App Paths\\Brackets.exe"
|
|
|
|
KEY_READ [
|
|
|
|
f f f
|
|
|
|
registry-value-max-length TCHAR <c-array>
|
|
|
|
reg-query-value-ex
|
|
|
|
] with-open-registry-key alien>native-string ;
|