-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththinBasic_registry_implementation.inc
More file actions
558 lines (483 loc) · 20.3 KB
/
thinBasic_registry_implementation.inc
File metadata and controls
558 lines (483 loc) · 20.3 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
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
' **************************************************************************
' * Registry_GetAllValues
' * Retrieves all values for given key
' *
' * hKey - registry key
' **************************************************************************
FUNCTION Registry_GetAllValues(hKey AS DWORD, byval sSeparator as string) AS STRING
DIM returnValue AS LONG
DIM azKeyName AS ASCIIZ * 32767, azKeyNameLen AS DWORD
DIM azKeyValue AS ASCIIZ * 1048576, azKeyValueLen AS DWORD
DIM KeyType AS DWORD
DIM Reserved AS DWORD
DIM lIndex AS DWORD
DIM sKeyValue AS STRING
DIM items(1 TO 1024) AS STRING
DIM itemCount AS LONG
DO WHILE returnValue <> %ERROR_NO_MORE_ITEMS
azKeyNameLen = SIZEOF(azKeyName)
azKeyValueLen = SIZEOF(azKeyValue)
Reserved = %NULL
returnValue = RegEnumValue(hKey, lIndex, azKeyName, BYVAL VARPTR(azKeyNameLen), BYVAL Reserved, BYVAL VARPTR(KeyType), azKeyValue, BYVAL VARPTR(azKeyValueLen))
INCR lIndex
IF returnValue = %ERROR_SUCCESS THEN
SELECT CASE keyType
CASE %REG_DWORD
sKeyValue = FORMAT$(CVDWD(azKeyValue))
CASE %REG_QWORD
sKeyValue = FORMAT$(CVQ(azKeyValue))
CASE ELSE
sKeyValue = LEFT$(azKeyValue, azKeyValueLen)
END SELECT
INCR itemCount
IF itemCount > UBOUND(items) THEN
REDIM PRESERVE items(1 TO UBOUND(items) * 2)
END IF
items(itemCount) = TRIM$(azKeyName) + "=" + sKeyValue
ELSEIF returnValue <> %ERROR_NO_MORE_ITEMS THEN
DIM errorMessage AS STRING
errorMessage = "RegEnumValue fails with error code " + FORMAT$(returnValue) + $CRLF + _
"Check error code meaning at https://msdn.microsoft.com/en-us/library/windows/desktop/ms681381(v=vs.85).aspx"
thinbasic_RunTimeError ( %ERR__MODULE_SPECIFIC, errorMessage )
EXIT FUNCTION
END IF
LOOP
IF itemCount THEN
REDIM PRESERVE items(1 TO itemCount)
ARRAY SORT items()
FUNCTION = JOIN$(items(), sSeparator)
END IF
END FUNCTION
' **************************************************************************
' * Registry_GetAllKeys
' * Retrieves all keys for given registry path
' *
' * hKey - One of the following equates:
' * %HKEY_CLASSES_ROOT,
' * %HKEY_CURRENT_CONFIG
' * %HKEY_CURRENT_USER
' * %HKEY_LOCAL_MACHINE
' * %HKEY_USERS
' * lHive - Name of a subkey. This parameter cannot be NULL
' * sSep - Separator of the returned items
' **************************************************************************
FUNCTION Registry_GetAllKeys(BYVAL lHKey AS DWORD, lHive AS ASCIIZ, BYVAL sSep AS STRING) AS STRING
DIM returnValue AS LONG
DIM azSubKeyName AS ASCIIZ * 1024, lSubKeyNameLen AS DWORD
DIM azClass AS ASCIIZ * 1024, lClassLen AS DWORD
DIM Reserved AS DWORD
DIM LastWriteTime AS FILETIME
DIM lIndex AS DWORD
DIM hKey AS DWORD
DIM result AS STRING
returnValue = RegOpenKeyEx(lHKey, lHive, 0, BYVAL %KEY_READ, hKey)
IF returnValue <> %ERROR_SUCCESS THEN
IF returnValue = %ERROR_FILE_NOT_FOUND THEN
EXIT FUNCTION
END IF
DIM errorMessage AS STRING
errorMessage = "RegOpenKeyEx fails for " + lHive + ", error code " + FORMAT$(returnValue) + $CRLF + _
"Check error code meaning at https://msdn.microsoft.com/en-us/library/windows/desktop/ms681381(v=vs.85).aspx"
thinbasic_RunTimeError ( %ERR__MODULE_SPECIFIC, errorMessage )
END IF
result = Registry_GetAllValues(hKey, sSep)
' Enumerate all the subkeys for the current key.
'...............................................
DO WHILE returnValue <> %ERROR_NO_MORE_ITEMS
IF returnValue = %ERROR_SUCCESS THEN
lSubKeyNameLen = SIZEOF(azSubKeyName)
lClassLen = SIZEOF(azClass)
returnValue = RegEnumKeyEx(hKey, lIndex, azSubKeyName, BYVAL VARPTR(lSubKeyNameLen), BYVAL Reserved, BYVAL VARPTR(azClass), BYVAL VARPTR(lClasslen), LastWriteTime)
IF (returnValue <> %ERROR_NO_MORE_ITEMS) THEN
IF returnValue = %ERROR_SUCCESS THEN
result += IIF$(LEN(result), sSep, "") + azSubKeyName
END IF
END IF
END IF
INCR lIndex
LOOP
RegCloseKey hKey
FUNCTION = result
END FUNCTION
' **************************************************************************
' * Registry_SetValue
' * Set a string registry value
' *
' * hKey - One of the following equates:
' * %HKEY_CLASSES_ROOT,
' * %HKEY_CURRENT_CONFIG
' * %HKEY_CURRENT_USER
' * %HKEY_LOCAL_MACHINE
' * %HKEY_USERS
' * szSubKey - Name of a subkey. This parameter cannot be NULL
' * szValueName - Name of the value to set
' * szValue - Data to be stored
' **************************************************************************
FUNCTION Registry_SetValue(BYVAL hKey AS LONG, szSubKey AS ASCIIZ, szValueName AS ASCIIZ, szValue AS ASCIIZ) AS LONG
LOCAL returnValue AS LONG
LOCAL hOpenKey AS LONG
IF RegCreateKeyEx(hKey, szSubKey, %NULL, "", %REG_OPTION_NON_VOLATILE, _
%KEY_WRITE, BYVAL %NULL, hOpenKey, returnValue) <> %ERROR_SUCCESS THEN
EXIT FUNCTION
END IF
returnValue = RegSetValueEx(hOpenKey, szValueName, %NULL, %REG_SZ, szValue, LEN(szValue) + 1)
RegCloseKey(hOpenKey)
FUNCTION = (returnValue = %ERROR_SUCCESS)
END FUNCTION
' **************************************************************************
' * Registry_SetDWord
' * Set a binary registry value - very usefull to save UDTs to the registry
' *
' * hKey - One of the following equates:
' * %HKEY_CLASSES_ROOT,
' * %HKEY_CURRENT_CONFIG
' * %HKEY_CURRENT_USER
' * %HKEY_LOCAL_MACHINE
' * %HKEY_USERS
' * szSubKey - Name of a subkey. This parameter cannot be NULL
' * szValueName - Name of the value to set
' * dwValue - Dword value to store
' **************************************************************************
FUNCTION Registry_SetDWord(BYVAL hKey AS LONG, szSubKey AS ASCIIZ, szValueName AS ASCIIZ, BYVAL dwValue AS DWORD) AS LONG
LOCAL returnValue AS LONG
LOCAL hOpenKey AS LONG
IF RegCreateKeyEx( hKey, szSubKey, %NULL, "", %REG_OPTION_NON_VOLATILE, _
%KEY_WRITE, BYVAL %NULL, hOpenKey, returnValue) <> %ERROR_SUCCESS THEN
EXIT FUNCTION
END IF
returnValue = RegSetValueEx(hOpenKey, szValueName, %NULL, %REG_DWORD, dwValue, SIZEOF(dwValue))
RegCloseKey(hOpenKey)
FUNCTION = (returnValue = %ERROR_SUCCESS)
END FUNCTION
' **************************************************************************
' * Registry_SetBin
' * Set a binary registry value - very usefull to save UDTs to the registry
' *
' * hKey - One of the following equates:
' * %HKEY_CLASSES_ROOT,
' * %HKEY_CURRENT_CONFIG
' * %HKEY_CURRENT_USER
' * %HKEY_LOCAL_MACHINE
' * %HKEY_USERS
' * zSubKey - Name of a subkey. This parameter cannot be NULL
' * zValueName - Name of the value to set
' * BinValuePtr - Pointer to a buffer containing the data to be stored
' * lBufferSize - Specifies the size, in bytes, of the buffer
' **************************************************************************
FUNCTION Registry_SetBin(BYVAL hKey AS LONG, szSubKey AS ASCIIZ, szValueName AS ASCIIZ, BYVAL BinValuePtr AS LONG, BYVAL lBufferSize AS LONG) AS LONG
LOCAL returnValue AS LONG
LOCAL hOpenKey AS LONG
IF RegCreateKeyEx(hKey, szSubKey, %NULL, "", %REG_OPTION_NON_VOLATILE, _
%KEY_WRITE, BYVAL %NULL, hOpenKey, returnValue) <> %ERROR_SUCCESS THEN
EXIT FUNCTION
END IF
returnValue = RegSetValueEx(hOpenKey, szValueName, %NULL, %REG_BINARY, BYVAL BinValuePtr, lBufferSize)
RegCloseKey(hOpenKey)
FUNCTION = (returnValue = %ERROR_SUCCESS)
END FUNCTION
' **************************************************************************
' * Registry_SetTxtNum
' * Set a registry value
' *
' * hKey - One of the following equates:
' * %HKEY_CLASSES_ROOT,
' * %HKEY_CURRENT_CONFIG
' * %HKEY_CURRENT_USER
' * %HKEY_LOCAL_MACHINE
' * %HKEY_USERS
' * zSubKey - Name of a subkey. This parameter cannot be NULL
' * zValueName - Name of the value to query
' **************************************************************************
FUNCTION Registry_SetTxtNum(BYVAL hKey AS LONG, szSubKey AS ASCIIZ, szValueName AS ASCIIZ, BYVAL lValue AS LONG) AS LONG
LOCAL returnValue AS LONG
LOCAL hOpenKey AS LONG
LOCAL szTmp AS ASCIIZ * 64
FUNCTION = %FALSE
IF RegCreateKeyEx( hKey, szSubKey, %NULL, "", %REG_OPTION_NON_VOLATILE, _
%KEY_WRITE, BYVAL %NULL, hOpenKey, returnValue) <> %ERROR_SUCCESS THEN
EXIT FUNCTION
END IF
szTmp = FORMAT$(lValue)
returnValue = RegSetValueEx(hOpenKey, szValueName, %NULL, %REG_SZ, szTmp, LEN(szTmp)+1)
RegCloseKey(hOpenKey)
FUNCTION = (returnValue = %ERROR_SUCCESS)
END FUNCTION
' **************************************************************************
' * Registry_SetTxtBool
' * Set a registry value
' *
' * hKey - One of the following equates:
' * %HKEY_CLASSES_ROOT,
' * %HKEY_CURRENT_CONFIG
' * %HKEY_CURRENT_USER
' * %HKEY_LOCAL_MACHINE
' * %HKEY_USERS
' * zSubKey - Name of a subkey. This parameter cannot be NULL
' * zValueName - Name of the value to query
' **************************************************************************
FUNCTION Registry_SetTxtBool(BYVAL hKey AS LONG, szSubKey AS ASCIIZ, szValueName AS ASCIIZ, BYVAL lValue AS LONG) AS LONG
LOCAL returnValue AS LONG
LOCAL hOpenKey AS LONG
LOCAL szTmp AS ASCIIZ * 64
FUNCTION = %FALSE
IF RegCreateKeyEx( hKey, szSubKey, %NULL, "", %REG_OPTION_NON_VOLATILE, _
%KEY_WRITE, BYVAL %NULL, hOpenKey, returnValue) <> %ERROR_SUCCESS THEN
EXIT FUNCTION
END IF
szTmp = IIF$(lValue = %TRUE, "Yes", "No")
returnValue = RegSetValueEx(hOpenKey, szValueName, %NULL, %REG_SZ, szTmp, LEN(szTmp)+1)
RegCloseKey(hOpenKey)
FUNCTION = (returnValue = %ERROR_SUCCESS)
END FUNCTION
' **************************************************************************
' * Registry_GetValue
' * Get a string registry value
' *
' * hKey - One of the following equates:
' * %HKEY_CLASSES_ROOT,
' * %HKEY_CURRENT_CONFIG
' * %HKEY_CURRENT_USER
' * %HKEY_LOCAL_MACHINE
' * %HKEY_USERS
' * zSubKey - Name of a subkey. This parameter cannot be NULL
' * zValueName - Name of the value to query
' **************************************************************************
FUNCTION Registry_GetValue( _
BYVAL hLocation AS DWORD, _
BYVAL sSubKeys AS STRING, _
BYVAL sValueName AS STRING, _
OPTIONAL BYVAL sDefault AS STRING _
) AS STRING
LOCAL hKey AS DWORD
LOCAL zRegVal AS ASCIIZ * 1024
LOCAL dwType AS DWORD
LOCAL dwSize AS DWORD
IF hLocation = 0 THEN hLocation = %HKEY_CURRENT_USER
zRegVal = sDefault
IF (RegOpenKeyEx(hLocation, TRIM$(sSubKeys, "\"), 0, %KEY_READ, hKey) = %ERROR_SUCCESS) THEN
dwType = %REG_SZ
dwSize = SIZEOF(zRegVal)
RegQueryValueEx(hKey, BYCOPY sValueName, 0, dwType, zRegVal, dwSize)
RegCloseKey hKey
END IF
FUNCTION = zRegVal
END FUNCTION
' **************************************************************************
' * Registry_KeyExists
' * Check if registry key exists
' *
' * hKey - One of the following equates:
' * %HKEY_CLASSES_ROOT,
' * %HKEY_CURRENT_CONFIG
' * %HKEY_CURRENT_USER
' * %HKEY_LOCAL_MACHINE
' * %HKEY_USERS
' * zSubKey - Name of a subkey. This parameter cannot be NULL
' * zValueName - Name of the value to query
' **************************************************************************
FUNCTION Registry_KeyExists(BYVAL hKey AS LONG, szSubKey AS ASCIIZ, szValueName AS ASCIIZ) AS LONG
LOCAL returnValue AS LONG
LOCAL hOpenKey AS LONG
LOCAL sBuffer AS STRING
LOCAL lBufferSize AS LONG
returnValue = RegOpenKeyEx(hKey, szSubKey, %Null, %KEY_QUERY_VALUE, hOpenKey)
IF returnValue = %ERROR_SUCCESS THEN
returnValue = RegQueryValueEx(hOpenKey, szValueName, %Null, %REG_SZ, BYVAL %Null, lBufferSize)
IF returnValue = %ERROR_SUCCESS THEN
FUNCTION = %TRUE
ELSE
FUNCTION = -2&
END IF
RegCloseKey(hOpenKey)
ELSE
FUNCTION = -1&
END IF
END FUNCTION
' **************************************************************************
' * Registry_PathExists
' * Check if registry key exists
' *
' * hKey - One of the following equates:
' * %HKEY_CLASSES_ROOT,
' * %HKEY_CURRENT_CONFIG
' * %HKEY_CURRENT_USER
' * %HKEY_LOCAL_MACHINE
' * %HKEY_USERS
' * zSubKey - Name of a subkey. This parameter cannot be NULL
' * zValueName - Name of the value to query
' **************************************************************************
FUNCTION Registry_PathExists(BYVAL hKey AS LONG, szSubKey AS ASCIIZ) AS LONG
LOCAL returnValue AS LONG
LOCAL hOpenKey AS LONG
LOCAL sBuffer AS STRING
LOCAL lBufferSize AS LONG
returnValue = RegOpenKeyEx(hKey, szSubKey, %Null, %KEY_QUERY_VALUE, hOpenKey)
RegCloseKey(hOpenKey)
FUNCTION = (returnValue = %ERROR_SUCCESS)
END FUNCTION
' **************************************************************************
' * Registry_GetDWord
' * Get a Dword registry value
' *
' * hKey - One of the following equates:
' * %HKEY_CLASSES_ROOT,
' * %HKEY_CURRENT_CONFIG
' * %HKEY_CURRENT_USER
' * %HKEY_LOCAL_MACHINE
' * %HKEY_USERS
' * zSubKey - Name of a subkey. This parameter cannot be NULL
' * zValueName - Name of the value to query
' **************************************************************************
FUNCTION Registry_GetDWord(BYVAL hKey AS LONG, szSubKey AS ASCIIZ, szValueName AS ASCIIZ) AS DWORD
LOCAL returnValue AS LONG
LOCAL hOpenKey AS LONG
LOCAL dwTmp AS DWORD
LOCAL lBufferSize AS LONG
returnValue = RegOpenKeyEx(hKey, szSubKey, %NULL, %KEY_QUERY_VALUE, hOpenKey)
IF returnValue = %ERROR_SUCCESS THEN
lBufferSize = SIZEOF(dwTmp)
returnValue = RegQueryValueEx(hOpenKey, szValueName, %NULL, %REG_DWORD, dwTmp, lBufferSize)
RegCloseKey(hOpenKey)
FUNCTION = dwTmp
END IF
END FUNCTION
' **************************************************************************
' * Registry_GetBin
' * Get a binary registry value - very usefull to get UDTs from the registry
' *
' * hKey - One of the following equates:
' * %HKEY_CLASSES_ROOT,
' * %HKEY_CURRENT_CONFIG
' * %HKEY_CURRENT_USER
' * %HKEY_LOCAL_MACHINE
' * %HKEY_USERS
' * zSubKey - Name of a subkey. This parameter cannot be NULL
' * zValueName - Name of the value to query
' * BinValuePtr - Pointer to a buffer that receives the value's data
' * lBufferSize - Specifies the size, in bytes, of the buffer
' **************************************************************************
FUNCTION Registry_GetBin(BYVAL hKey AS LONG, szSubKey AS ASCIIZ, szValueName AS ASCIIZ, BYVAL BinValuePtr AS LONG, BYVAL lBufferSize AS LONG) AS LONG
LOCAL returnValue AS LONG
LOCAL hOpenKey AS LONG
FUNCTION = %FALSE
returnValue = RegOpenKeyEx(hKey, szSubKey, %NULL, %KEY_QUERY_VALUE, hOpenKey)
IF returnValue = %ERROR_SUCCESS THEN
returnValue = RegQueryValueEx( hOpenKey, szValueName, %NULL, %REG_BINARY, BYVAL BinValuePtr, lBufferSize)
IF returnValue = %ERROR_SUCCESS THEN
FUNCTION = %TRUE
END IF
RegCloseKey(hOpenKey)
END IF
END FUNCTION
' **************************************************************************
' * Registry_GetTxtNum
' * Get a number from a registry value stored as text
' *
' * hKey - One of the following equates:
' * %HKEY_CLASSES_ROOT,
' * %HKEY_CURRENT_CONFIG
' * %HKEY_CURRENT_USER
' * %HKEY_LOCAL_MACHINE
' * %HKEY_USERS
' * zSubKey - Name of a subkey. This parameter cannot be NULL
' * zValueName - Name of the value to query
' **************************************************************************
FUNCTION Registry_GetTxtNum(BYVAL hKey AS LONG, zSubKey AS ASCIIZ, zValueName AS ASCIIZ, BYVAL lDefVal AS LONG) AS LONG
LOCAL returnValue AS LONG
LOCAL hOpenKey AS LONG
LOCAL szTmp AS ASCIIZ * 64
LOCAL lBufferSize AS LONG
returnValue = RegOpenKeyEx(hKey, zSubKey, %NULL, %KEY_QUERY_VALUE, hOpenKey)
IF returnValue = %ERROR_SUCCESS THEN
lBufferSize = SIZEOF(szTmp)
returnValue = RegQueryValueEx(hOpenKey, zValueName, %NULL, %REG_SZ, szTmp, lBufferSize)
IF LEN(szTmp) > 0 THEN
FUNCTION = VAL(szTmp)
ELSE
FUNCTION = lDefVal
END IF
RegCloseKey(hOpenKey)
ELSE
FUNCTION = lDefVal
END IF
END FUNCTION
' **************************************************************************
' * Registry_GetTxtBool
' * Get a number from a registry value stored as text
' *
' * hKey - One of the following equates:
' * %HKEY_CLASSES_ROOT,
' * %HKEY_CURRENT_CONFIG
' * %HKEY_CURRENT_USER
' * %HKEY_LOCAL_MACHINE
' * %HKEY_USERS
' * zSubKey - Name of a subkey. This parameter cannot be NULL
' * zValueName - Name of the value to query
' **************************************************************************
FUNCTION Registry_GetTxtBool(BYVAL hKey AS LONG, zSubKey AS ASCIIZ, zValueName AS ASCIIZ, BYVAL lDefVal AS LONG) AS LONG
LOCAL returnValue AS LONG
LOCAL hOpenKey AS LONG
LOCAL zText AS ASCIIZ * 2048
LOCAL lBufferSize AS LONG
returnValue = RegOpenKeyEx(hKey, zSubKey, %NULL, %KEY_QUERY_VALUE, hOpenKey)
IF returnValue = %ERROR_SUCCESS THEN
lBufferSize = SIZEOF(zText)
returnValue = RegQueryValueEx( hOpenKey, zValueName, %NULL, %REG_SZ, zText, lBufferSize)
IF LEN(zText) > 0 THEN
IF UCASE$(zText) = "YES" OR UCASE$(zText) = "TRUE" THEN
FUNCTION = %TRUE
END IF
ELSE
FUNCTION = lDefVal
END IF
ELSE
FUNCTION = lDefVal
END IF
RegCloseKey hOpenKey
END FUNCTION
' **************************************************************************
' * Registry_DelValue
' * Delete a registry value
' *
' * hKey - One of the following equates:
' * %HKEY_CLASSES_ROOT,
' * %HKEY_CURRENT_CONFIG
' * %HKEY_CURRENT_USER
' * %HKEY_LOCAL_MACHINE
' * %HKEY_USERS
' * zSubKey - Name of a subkey. This parameter cannot be NULL
' * zValueName - Name of the value to remove
' **************************************************************************
FUNCTION Registry_DelValue(BYVAL hKey AS LONG, zSubKey AS ASCIIZ, zValueName AS ASCIIZ) AS LONG
LOCAL returnValue AS LONG
LOCAL hOpenKey AS LONG
FUNCTION = %FALSE
returnValue = RegOpenKeyEx(hKey, zSubKey, %NULL, %KEY_ALL_ACCESS, hOpenKey)
IF returnValue = %ERROR_SUCCESS THEN
returnValue = RegDeleteValue(hOpenKey, zValueName)
END IF
RegCloseKey hOpenKey
FUNCTION = (returnValue = %ERROR_SUCCESS)
END FUNCTION
' **************************************************************************
' * Registry_DelKey
' * Delete a registry key
' *
' * hKey - One of the following equates:
' * %HKEY_CLASSES_ROOT,
' * %HKEY_CURRENT_CONFIG
' * %HKEY_CURRENT_USER
' * %HKEY_LOCAL_MACHINE
' * %HKEY_USERS
' * zSubKey - Name of a subkey to remove. This parameter cannot be NULL
' **************************************************************************
FUNCTION Registry_DelKey(BYVAL hKey AS LONG, zSubKey AS ASCIIZ) AS LONG
LOCAL returnValue AS LONG
LOCAL hOpenKey AS LONG
FUNCTION = %FALSE
IF RegOpenKeyEx(hKey, zSubKey, %NULL, %KEY_ALL_ACCESS, hOpenKey) <> %ERROR_SUCCESS THEN EXIT FUNCTION
returnValue = RegDeleteKey(hKey, zSubKey)
RegCloseKey hOpenKey
FUNCTION = (returnValue = %ERROR_SUCCESS)
END FUNCTION
'------------------------------------------------------------------------------