Win32OperatingSystem.st
changeset 5135 cbd3b4c19d84
parent 5133 89dcec4f269f
child 5136 faa3c9f42b8b
equal deleted inserted replaced
5134:48758d82be48 5135:cbd3b4c19d84
  7620 	Transcript showCR:subEntry path
  7620 	Transcript showCR:subEntry path
  7621      ]
  7621      ]
  7622     "
  7622     "
  7623 !
  7623 !
  7624 
  7624 
       
  7625 subKeys
       
  7626     "return a collection of subKeys below the receiver"
       
  7627 
       
  7628     |idx subEntry subKeys|
       
  7629 
       
  7630     subKeys := OrderedCollection new.
       
  7631     self subKeysDo:[:k | subKeys add:k].
       
  7632     ^ subKeys
       
  7633 
       
  7634     "
       
  7635      |top sub|
       
  7636 
       
  7637      top := self key:'HKEY_LOCAL_MACHINE'.
       
  7638      top subKeys
       
  7639     "
       
  7640 
       
  7641     "Created: / 23.12.1999 / 22:15:22 / cg"
       
  7642     "Modified: / 23.12.1999 / 22:15:44 / cg"
       
  7643 !
       
  7644 
  7625 subKeysDo:aBlock
  7645 subKeysDo:aBlock
  7626     "evaluate aBlock for all subKeys below the receiver"
  7646     "evaluate aBlock for all subKeys below the receiver"
  7627 
  7647 
  7628     |idx subEntry|
  7648     |idx subEntry|
  7629 
  7649 
  8035 ! !
  8055 ! !
  8036 
  8056 
  8037 !Win32OperatingSystem class methodsFor:'documentation'!
  8057 !Win32OperatingSystem class methodsFor:'documentation'!
  8038 
  8058 
  8039 version
  8059 version
  8040     ^ '$Header: /cvs/stx/stx/libbasic/Win32OperatingSystem.st,v 1.84 1999-12-23 21:35:30 cg Exp $'
  8060     ^ '$Header: /cvs/stx/stx/libbasic/Win32OperatingSystem.st,v 1.85 1999-12-23 21:50:12 cg Exp $'
  8041 ! !
  8061 ! !
  8042 
  8062 Win32OperatingSystem initialize!
  8043