Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/windirstat/lua-winreg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexey Melnichuk <alexeymelnichuck@gmail.com>2016-11-15 16:04:57 +0300
committerAlexey Melnichuk <alexeymelnichuck@gmail.com>2016-11-15 16:08:28 +0300
commit104aff465b80a879a9a44415baa34ce53bfa602a (patch)
tree933b4c1099906d284d080cd177d29c509fc08af8 /appveyor.yml
parent93608de75f120274e68f7250f0f64f4073e8d229 (diff)
Add. `32` and `64` access modes (close #1)
```Lua local p = [[HKEY_LOCAL_MACHINE\SOFTWARE]] local key = assert(winreg.openkey(p, 'r')) local key64 = assert(winreg.openkey(p, 'r64')) local key32 = assert(winreg.openkey(p, 'r32')) ```
Diffstat (limited to 'appveyor.yml')
-rw-r--r--appveyor.yml1
1 files changed, 1 insertions, 0 deletions
diff --git a/appveyor.yml b/appveyor.yml
index b978027..8500078 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -33,3 +33,4 @@ test_script:
- lua test_5_1_9.lua
- lua test_5_1_10.lua
- lua test_5_1_13.lua
+ - lua test_5_1_14.lua