home *** CD-ROM | disk | FTP | other *** search
/ Chip 2000 May / Chip_2000-05_cd1.bin / zkuste / Perl / ActivePerl-5.6.0.613.msi / 䆊䌷䈹䈙䏵-䞅䞆䞀㡆䞃䄦䠥 / _0256ba9d7e4ee99c617c90976442c9be < prev    next >
Text File  |  2000-03-23  |  62KB  |  1,117 lines

  1.  
  2. <HTML>
  3. <HEAD>
  4. <TITLE>Win32API::Registry - Low-level access to Win32 system API calls from WINREG.H</TITLE>
  5. <LINK REL="stylesheet" HREF="../../../Active.css" TYPE="text/css">
  6. <LINK REV="made" HREF="mailto:">
  7. </HEAD>
  8.  
  9. <BODY>
  10. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  11. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  12. <STRONG><P CLASS=block> Win32API::Registry - Low-level access to Win32 system API calls from WINREG.H</P></STRONG>
  13. </TD></TR>
  14. </TABLE>
  15.  
  16. <A NAME="__index__"></A>
  17. <!-- INDEX BEGIN -->
  18.  
  19. <UL>
  20.  
  21.     <LI><A HREF="#name">NAME</A></LI><LI><A HREF="#supportedplatforms">SUPPORTED PLATFORMS</A></LI>
  22.  
  23.     <LI><A HREF="#synopsis">SYNOPSIS</A></LI>
  24.     <LI><A HREF="#description">DESCRIPTION</A></LI>
  25.     <UL>
  26.  
  27.         <LI><A HREF="#exports">Exports</A></LI>
  28.         <LI><A HREF="#the win32api:: heirarchy">The Win32API:: heirarchy</A></LI>
  29.         <LI><A HREF="#buffer sizes">Buffer sizes</A></LI>
  30.         <LI><A HREF="#hungarian notation">Hungarian Notation</A></LI>
  31.     </UL>
  32.  
  33.     <LI><A HREF="#bugs">BUGS</A></LI>
  34.     <LI><A HREF="#author">AUTHOR</A></LI>
  35.     <LI><A HREF="#see also">SEE ALSO</A></LI>
  36. </UL>
  37. <!-- INDEX END -->
  38.  
  39. <HR>
  40. <P>
  41. <H1><A NAME="name">NAME</A></H1>
  42. <P>Win32API::Registry - Low-level access to Win32 system API calls from WINREG.H</P>
  43. <P>
  44. <HR>
  45. <H1><A NAME="supportedplatforms">SUPPORTED PLATFORMS</A></H1>
  46. <UL>
  47. <LI>Windows</LI>
  48. </UL>
  49. <HR>
  50. <H1><A NAME="synopsis">SYNOPSIS</A></H1>
  51. <PRE>
  52.   use Win32API::Registry 0.13 qw( :ALL );</PRE>
  53. <PRE>
  54.   RegOpenKeyEx( HKEY_LOCAL_MACHINE, "SYSTEM\\Disk", 0, KEY_READ, $key );
  55.     or  die "Can't open HKEY_LOCAL_MACHINE\\SYSTEM\\Disk: $^E\n";
  56.   RegQueryValueEx( $key, "Information", [], $type, $data, [] );
  57.     or  die "Can't read HKEY_L*MACHINE\\SYSTEM\\Disk\\Information: $^E\n";
  58.   [...]
  59.   RegCloseKey( $key )
  60.     or  die "Can't close HKEY_LOCAL_MACHINE\\SYSTEM\\Disk: $^E\n";</PRE>
  61. <P>
  62. <HR>
  63. <H1><A NAME="description">DESCRIPTION</A></H1>
  64. <P>This provides fairly low-level access to the Win32 System API
  65. calls dealing with the Registry (mostly from WINREG.H).  This
  66. is mostly intended to be used by other modules such as
  67. <A HREF="#item_Win32%3A%3ATieRegistry"><CODE>Win32::TieRegistry</CODE></A> [which provides an extremely Perl-friendly
  68. method for using the Registry].</P>
  69. <P>For a description of the logical structure of the Registry, see
  70. the documentation for the <A HREF="#item_Win32%3A%3ATieRegistry"><CODE>Win32::TieRegistry</CODE></A> module.</P>
  71. <P>To pass in <CODE>NULL</CODE> as the pointer to an optional buffer, pass in
  72. an empty list reference, <CODE>[]</CODE>.</P>
  73. <P>Beyond raw access to the API calls and related constants, this module
  74. handles smart buffer allocation and translation of return codes.</P>
  75. <P>All calls return a true value for success and a false value for
  76. failure.  After any failure, <CODE>$^E</CODE> should automatically be set to
  77. indicate the reason.  If you have a version of Perl that does not
  78. yet connect <CODE>$^E</CODE> to <CODE>GetLastError()</CODE> under Win32, then you can
  79. use <CODE>$iError= Win32::GetLastError()</CODE> to get the numeric error
  80. code and pass that to <CODE>Win32::FormatMessage($iError)</CODE> to to get
  81. the descriptive string, or just
  82. <CODE>Win32::FormatMessage(Win32::GetLastError())</CODE>.</P>
  83. <P>Note that <CODE>$!</CODE> is not set by these routines except by
  84. <CODE>Win32API::Registry::constant()</CODE> when a constant is not defined.</P>
  85. <P>
  86. <H2><A NAME="exports">Exports</A></H2>
  87. <P>Nothing is exported by default.  The following tags can be used to
  88. have sets of symbols exported.</P>
  89. <P>[Note that much of the following documentation refers to the
  90. behavior of the underlying API calls which may vary in current
  91. and future versions of the Win32 API without any changes to this
  92. module.  Therefore you should check the Win32 API documentation
  93. directly when needed.]</P>
  94. <DL>
  95. <DT><STRONG><A NAME="item_%3AFunc">:Func</A></STRONG><BR>
  96. <DD>
  97. The basic function names:
  98. <DL>
  99. <DT><STRONG><A NAME="item_AllowPriv">AllowPriv( $sPrivName, $bEnable )</A></STRONG><BR>
  100. <DD>
  101. Not a Win32 API call.  Enables or disables a specific privilege for
  102. the current process.  Returns a true value if successful and a false
  103. value [and sets <CODE>$^E</CODE>] on failure.  This routine does not provide
  104. a way to tell if a privilege is current enabled.
  105. <P><CODE>$sPrivname</CODE> is a Win32 privilege name [see the <CODE>SE_*_NAME</CODE>
  106. macros of <EM>winnt.h</EM>].  For example, <CODE>"SeBackupPrivilege"</CODE> [a.k.a.
  107. <CODE>SE_BACKUP_NAME</CODE>] controls whether you can use <A HREF="#item_RegSaveKey"><CODE>RegSaveKey()</CODE></A>
  108. and <CODE>"SeRestorePrivilege"</CODE> [a.k.a. <CODE>SE_RESTORE_NAME</CODE>] controls
  109. whether you can use <A HREF="#item_RegLoadKey"><CODE>RegLoadKey()</CODE></A>.</P>
  110. <P>If <CODE>$bEnable</CODE> is true, then <A HREF="#item_AllowPriv"><CODE>AllowPriv()</CODE></A> tries to enable the
  111. privilege.  Otherwise it tries to disable the privilege.</P>
  112. <P></P>
  113. <DT><STRONG><A NAME="item_AbortSystemShutdown">AbortSystemShutdown( $sComputerName )</A></STRONG><BR>
  114. <DD>
  115. Tries to abort a remote shutdown request previously made via
  116. <A HREF="#item_InitiateSystemShutdown"><CODE>InitiateSystemShutdown()</CODE></A>.
  117. <P></P>
  118. <DT><STRONG><A NAME="item_InitiateSystemShutdown">InitiateSystemShutdown( $sComputer, $sMessage, $uTimeoutSecs, $bForce, $bReboot )</A></STRONG><BR>
  119. <DD>
  120. Requests that a [remote] computer be shutdown or rebooted.
  121. <P><CODE>$sComputer</CODE> is the name [or address] of the computer to be
  122. shutdown or rebooted.  You can use <CODE>[]</CODE> [for <CODE>NULL</CODE>] or <CODE>""</CODE>
  123. to indicate the local computer.</P>
  124. <P><CODE>$sMessage</CODE> is the message to be displayed in a pop-up window
  125. on the desktop of the computer to be shutdown or rebooted until
  126. the timeout expires or the shutdown is aborted via
  127. <A HREF="#item_AbortSystemShutdown"><CODE>AbortSystemShutdown()</CODE></A>.  With <CODE>$iTimeoutSecs == 0</CODE>, the message
  128. will never be visible.</P>
  129. <P><CODE>$iTimeoutSecs</CODE> is the number of seconds to wait before starting
  130. the shutdown.</P>
  131. <P>If <CODE>$bForce</CODE> is false, then any applications running on the remote
  132. computer get a chance to prompt the remote user whether they want
  133. to save changes.  Also, for any applications that do not exit quickly
  134. enough, the operating system will prompt the user whether they wish
  135. to wait longer for the application to exit or force it to exit now.
  136. At any of these prompts the user can press <STRONG>CANCEL</STRONG> to abort the
  137. shutdown but if no applications have unsaved data, they will likely
  138. all exit quickly and the shutdown will progress with the remote user
  139. having no option to cancel the shutdown.</P>
  140. <P>If <CODE>$bForce</CODE> is true, all applications are told to exit immediately
  141. and so will not prompt the user even if there is unsaved data.  Any
  142. applications that take too long to exit will be forcibly killed after
  143. a short time.  The only way to abort the shutdown is to call
  144. <A HREF="#item_AbortSystemShutdown"><CODE>AbortSystemShutdown()</CODE></A> before the timeout expires and there is no
  145. way to abort the shutdown once it has begun.</P>
  146. <P>If <CODE>$bReboot</CODE> is true, the computer will automatically reboot once
  147. the shutdown is complete.  If <CODE>$bReboot</CODE> is false, then when the
  148. shutdown is complete the computer will halt at a screen indicating
  149. that the shutdown is complete and offering a way for the user to
  150. start to boot the computer.</P>
  151. <P>You must have the <CODE>"SeRemoteShutdownPrivilege"</CODE> privilege
  152. on the remote computer for this call to succeed.  If shutting
  153. down the local computer, then the calling process must have
  154. the <CODE>"SeShutdownPrivilege"</CODE> privilege and have it enabled.</P>
  155. <P></P>
  156. <DT><STRONG><A NAME="item_RegCloseKey">RegCloseKey( $hKey )</A></STRONG><BR>
  157. <DD>
  158. Closes the handle to a Registry key returned by <A HREF="#item_RegOpenKeyEx"><CODE>RegOpenKeyEx()</CODE></A>,
  159. <A HREF="#item_RegConnectRegistry"><CODE>RegConnectRegistry()</CODE></A>, <A HREF="#item_RegCreateKeyEx"><CODE>RegCreateKeyEx()</CODE></A>, or a few other
  160. routines.
  161. <P></P>
  162. <DT><STRONG><A NAME="item_RegConnectRegistry">RegConnectRegistry( $sComputer, $hRootKey, $ohKey )</A></STRONG><BR>
  163. <DD>
  164. Connects to one of the root Registry keys of a remote computer.
  165. <P><CODE>$sComputer</CODE> is the name [or address] of a remote computer you
  166. whose Registry you wish to access.</P>
  167. <P><CODE>$hKey</CODE> must be either <CODE>HKEY_LOCAL_MACHINE</CODE> or <CODE>HKEY_USERS</CODE>
  168. and specifies which root Registry key on the remote computer
  169. you wish to have access to.</P>
  170. <P><CODE>$phKey</CODE> will be set to the handle to be used to access the remote
  171. Registry key.</P>
  172. <P></P>
  173. <DT><STRONG><A NAME="item_RegCreateKey">RegCreateKey( $hKey, $sSubKey, $ohSubKey )</A></STRONG><BR>
  174. <DD>
  175. This routine is meant only for compatibility with Windows version
  176. 3.1.  Use <A HREF="#item_RegCreateKeyEx"><CODE>RegCreateKeyEx()</CODE></A> instead.
  177. <P></P>
  178. <DT><STRONG><A NAME="item_RegCreateKeyEx">RegCreateKeyEx( $hKey, $sSubKey, $uZero, $sClass, $uOpts, $uAccess, $pSecAttr, $ohNewKey, $ouDisp )</A></STRONG><BR>
  179. <DD>
  180. Creates a new Registry subkey.
  181. <P><CODE>$hKey</CODE> is the handle to a Registry key [either <CODE>HKEY_*</CODE> or from
  182. a previous call].</P>
  183. <P><CODE>$sSubKey</CODE> is the name of the new subkey to be created.</P>
  184. <P><CODE>$iZero</CODE> is reserved for future use and should always be specified
  185. as <CODE>0</CODE>.</P>
  186. <P><CODE>$sClass</CODE> is a string to be used as the class for the new
  187. subkey.  We are not aware of any current use for Registry key
  188. class information so the empty string, <CODE>""</CODE>, should usually
  189. be used here.</P>
  190. <P><CODE>$iOpts</CODE> is a numeric value containing bits that control options
  191. used while creating the new subkey.  <CODE>REG_OPTION_NON_VOLATILE</CODE>
  192. is the default.  <CODE>REG_OPTION_VOLATILE</CODE> [which is ignored on
  193. Windows 95] means the data stored under this key is not kept in a
  194. file and will not be preserved when the system reboots.
  195. <CODE>REG_OPTION_BACKUP_RESTORE</CODE> [also ignored on Windows 95] means
  196. ignore the <CODE>$iAccess</CODE> parameter and try to open the new key with
  197. the access required to backup or restore the key.</P>
  198. <P><CODE>$iAccess</CODE> is a numeric mask of bits specifying what type of
  199. access is desired when opening the new subkey.  See <A HREF="#item_RegOpenKeyEx"><CODE>RegOpenKeyEx()</CODE></A>.</P>
  200. <P><CODE>$pSecAttr</CODE> is a <CODE>SECURITY_ATTRIBUTES</CODE> structure packed into
  201. a Perl string which controls whether the returned handle can be
  202. inherited by child processes.  Normally you would pass <CODE>[]</CODE> for
  203. this argument to have <CODE>NULL</CODE> passed to the underlying API
  204. indicating that the handle cannot be inherited.  If not under
  205. Windows95, then <CODE>$pSecAttr</CODE> also allows you to specify
  206. <CODE>SECURITY_DESCRIPTOR</CODE> that controls which users will have
  207. what type of access to the new key -- otherwise the new key
  208. inherits its security from its parent key.</P>
  209. <P><CODE>$phKey</CODE> will be set to the handle to be used to access the new subkey.</P>
  210. <P><CODE>$piDisp</CODE> will be set to either <CODE>REG_CREATED_NEW_KEY</CODE> or
  211. <CODE>REG_OPENED_EXISTING_KEY</CODE> to indicate for which reason the
  212. call succeeded.  Can be specified as <CODE>[]</CODE> if you don't care.</P>
  213. <P>If <CODE>$phKey</CODE> and <CODE>$piDisp</CODE> start out is integers, then they will
  214. probably remain unchanged if the call fails.</P>
  215. <P></P>
  216. <DT><STRONG><A NAME="item_RegDeleteKey">RegDeleteKey( $hKey, $sSubKey )</A></STRONG><BR>
  217. <DD>
  218. Deletes a subkey of an open Registry key provided that the subkey
  219. contains no subkeys of its own [but the subkey may contain values].
  220. <P><CODE>$hKey</CODE> is the handle to a Registry key [either <CODE>HKEY_*</CODE> or from
  221. a previous call].</P>
  222. <P><CODE>$sSubKey</CODE> is the name of the subkey to be deleted.</P>
  223. <P></P>
  224. <DT><STRONG><A NAME="item_RegDeleteValue">RegDeleteValue( $hKey, $sValueName )</A></STRONG><BR>
  225. <DD>
  226. Deletes a values from an open Registry key provided.
  227. <P><CODE>$hKey</CODE> is the handle to a Registry key [either <CODE>HKEY_*</CODE> or from
  228. a previous call].</P>
  229. <P><CODE>$sValueKey</CODE> is the name of the value to be deleted.</P>
  230. <P></P>
  231. <DT><STRONG><A NAME="item_RegEnumKey">RegEnumKey( $hKey, $uIndex, $osName, $ilNameSize )</A></STRONG><BR>
  232. <DD>
  233. This routine is meant only for compatibility with Windows version
  234. 3.1.  Use <A HREF="#item_RegEnumKeyEx"><CODE>RegEnumKeyEx()</CODE></A> instead.
  235. <P></P>
  236. <DT><STRONG><A NAME="item_RegEnumKeyEx">RegEnumKeyEx( $hKey, $uIndex, $osName, $iolName, $pNull, $osClass, $iolClass, $opftLastWrite )</A></STRONG><BR>
  237. <DD>
  238. Lets you enumerate the names of all of the subkeys directly under
  239. an open Registry key.
  240. <P><CODE>$hKey</CODE> is the handle to a Registry key [either <CODE>HKEY_*</CODE> or from
  241. a previous call].</P>
  242. <P><CODE>$iIndex</CODE> is the sequence number of the immediate subkey that you
  243. want information on.  Start with this value as <CODE>0</CODE> then repeat
  244. the call incrementing this value each time until the call fails
  245. with <CODE>ERROR_NO_MORE_ITEMS</CODE>.</P>
  246. <P><CODE>$sName</CODE> will be set to the name of the subkey.  Can be <CODE>[]</CODE> if
  247. you don't care about the name.</P>
  248. <P><CODE>$plName</CODE> initially specifies the [minimum] buffer size to be
  249. allocated for <CODE>$sName</CODE>.  Will be set to the length of the subkey
  250. name if the requested subkey exists even if <CODE>$sName</CODE> isn't
  251. successfully set to the subkey name.  See <A HREF="#buffer sizes">Buffer sizes</A> for
  252. more information.</P>
  253. <P><CODE>$pNull</CODE> is reserved for future used and should be passed as <CODE>[]</CODE>.</P>
  254. <P><CODE>$sClass</CODE> will be set to the class name for the subkey.  Can be
  255. <CODE>[]</CODE> if you don't care about the class.</P>
  256. <P><CODE>$plClass</CODE> initially specifies the [minimum] buffer size to be
  257. allocated for <CODE>$sClass</CODE> and will be set to the length of the
  258. subkey class name if the requested subkey exists.  See <A HREF="#buffer sizes">Buffer sizes</A> for more information.</P>
  259. <P><CODE>$pftLastWrite</CODE> will be set to a <CODE>FILETIME</CODE> structure packed
  260. into a Perl string and indicating when the subkey was last changed.
  261. Can be <CODE>[]</CODE>.</P>
  262. <P>You may omit both <CODE>$plName</CODE> and <CODE>$plClass</CODE> to get the same effect
  263. as passing in <CODE>[]</CODE> for each of them.</P>
  264. <P></P>
  265. <DT><STRONG><A NAME="item_RegEnumValue">RegEnumValue( $hKey, $uIndex, $osValName, $iolValName, $pNull, $ouType, $opValData, $iolValData )</A></STRONG><BR>
  266. <DD>
  267. Lets you enumerate the names of all of the values contained in an
  268. open Registry key.
  269. <P><CODE>$hKey</CODE> is the handle to a Registry key [either <CODE>HKEY_*</CODE> or from
  270. a previous call].</P>
  271. <P><CODE>$iIndex</CODE> is the sequence number of the value that you want
  272. information on.  Start with this value as <CODE>0</CODE> then repeat the
  273. call incrementing this value each time until the call fails with
  274. <CODE>ERROR_NO_MORE_ITEMS</CODE>.</P>
  275. <P><CODE>$sValName</CODE> will be set to the name of the value.  Can be <CODE>[]</CODE>
  276. if you don't care about the name.</P>
  277. <P><CODE>$plValName</CODE> initially specifies the [minimum] buffer size to be
  278. allocated for <CODE>$sValName</CODE>.  Will be set to the length of the value
  279. name if the requested value exists even if <CODE>$sValName</CODE> isn't
  280. successfully set to the value name.  See <A HREF="#buffer sizes">Buffer sizes</A> for
  281. more information.</P>
  282. <P><CODE>$pNull</CODE> is reserved for future used and should be passed as <CODE>[]</CODE>.</P>
  283. <P><CODE>$piType</CODE> will be set to the type of data stored in the value data.
  284. If the call succeeds, it will be set to a <CODE>REG_*</CODE> value unless
  285. passed in as <CODE>[]</CODE>.</P>
  286. <P><CODE>$pValData</CODE> will be set to the data [packed into a Perl string]
  287. that is stored in the requested value.  Can be <CODE>[]</CODE> if you don't
  288. care about the value data.</P>
  289. <P><CODE>$plValData</CODE> initially specifies the [minimum] buffer size to be
  290. allocated for <CODE>$sValData</CODE> and will be set to the length of the
  291. value data if the requested value exists.  See <A HREF="#buffer sizes">Buffer sizes</A> for
  292. more information.</P>
  293. <P>You may omit both <CODE>$plValName</CODE> and <CODE>$plValData</CODE> to get the same
  294. effect as passing in <CODE>[]</CODE> for each of them.</P>
  295. <P></P>
  296. <DT><STRONG><A NAME="item_RegFlushKey">RegFlushKey( $hKey )</A></STRONG><BR>
  297. <DD>
  298. Forces that data stored under an open Registry key to be flushed
  299. to the disk file where the data is preserved between reboots.
  300. Forced flushing is not guaranteed to be efficient so this routine
  301. should almost never be called.
  302. <P><CODE>$hKey</CODE> is the handle to a Registry key [either <CODE>HKEY_*</CODE> or from
  303. a previous call].</P>
  304. <P></P>
  305. <DT><STRONG><A NAME="item_RegGetKeySecurity">RegGetKeySecurity( $hKey, $uSecInfo, $opSecDesc, $iolSecDesc )</A></STRONG><BR>
  306. <DD>
  307. Retrieves one of the <CODE>SECURITY_DESCRIPTOR</CODE> structures describing
  308. part of the security for an open Registry key.
  309. <P><CODE>$hKey</CODE> is the handle to a Registry key [either <CODE>HKEY_*</CODE> or from
  310. a previous call].</P>
  311. <P><CODE>$iSecInfo</CODE> is a numeric <CODE>SECURITY_INFORMATION</CODE> value that
  312. specifies which <CODE>SECURITY_DESCRIPTOR</CODE> structure to retrieve.  Should
  313. be <CODE>OWNER_SECURITY_INFORMATION</CODE>, <CODE>GROUP_SECURITY_INFORMATION</CODE>,
  314. <CODE>DACL_SECURITY_INFORMATION</CODE>, or <CODE>SACL_SECURITY_INFORMATION</CODE>.</P>
  315. <P><CODE>$pSecDesc</CODE> will be set to the requested <CODE>SECURITY_DESCRIPTOR</CODE>
  316. structure [packed into a Perl string].</P>
  317. <P><CODE>$plSecDesc</CODE> initially specifies the [minimum] buffer size to be
  318. allocated for <CODE>$sSecDesc</CODE> and will be set to the length of the
  319. security descriptor.  See <A HREF="#buffer sizes">Buffer sizes</A> for more information.
  320. You may omit this parameter to get the same effect as passing in
  321. <CODE>[]</CODE> for it.</P>
  322. <P></P>
  323. <DT><STRONG><A NAME="item_RegLoadKey">RegLoadKey( $hKey, $sSubKey, $sFileName )</A></STRONG><BR>
  324. <DD>
  325. Loads a hive file.  That is, it creates a new subkey in the
  326. Registry and associates that subkey with a disk file that contains
  327. a Registry hive so that the new subkey can be used to access the
  328. keys and values stored in that hive.  Hives are usually created
  329. via <A HREF="#item_RegSaveKey"><CODE>RegSaveKey()</CODE></A>.
  330. <P><CODE>$hKey</CODE> is the handle to a Registry key that can have hives
  331. loaded to it.  This must be <CODE>HKEY_LOCAL_MACHINE</CODE>, <CODE>HKEY_USERS</CODE>,
  332. or a remote version of one of these from a call to
  333. <A HREF="#item_RegConnectRegistry"><CODE>RegConnectRegistry()</CODE></A>.</P>
  334. <P><CODE>$sSubKey</CODE> is the name of the new subkey to created and associated
  335. with the hive file.</P>
  336. <P><CODE>$sFileName</CODE> is the name of the hive file to be loaded.  This
  337. file name is interpretted relative to the
  338. <CODE>%SystemRoot%/System32/config</CODE> directory on the computer where
  339. the <CODE>$hKey</CODE> key resides.</P>
  340. <P>Loading of hive files located on network shares may fail or
  341. corrupt the hive and so should not be attempted.</P>
  342. <P></P>
  343. <DT><STRONG><A NAME="item_RegNotifyChangeKeyValue">RegNotifyChangeKeyValue( $hKey, $bWatchSubtree, $uNotifyFilter, $hEvent, $bAsync )</A></STRONG><BR>
  344. <DD>
  345. Arranges for your process to be notified when part of the Registry
  346. is changed.
  347. <P><CODE>$hKey</CODE> is the handle to a Registry key [either <CODE>HKEY_*</CODE> or from
  348. a previous call] for which you wish to be notified when any changes
  349. are made to it.</P>
  350. <P>If <CODE>$bWatchSubtree</CODE> is true, then changes to any subkey or
  351. descendant of <CODE>$hKey</CODE> are also reported.</P>
  352. <P><CODE>$iNotifyFilter</CODE> controllers what types of changes are reported.  It
  353. is a numeric value containing one or more of the following bit masks:</P>
  354. <DL>
  355. <DT><STRONG><A NAME="item_REG_NOTIFY_CHANGE_NAME">REG_NOTIFY_CHANGE_NAME</A></STRONG><BR>
  356. <DD>
  357. Notify if a subkey is added or deleted to a monitored key.
  358. <P></P>
  359. <DT><STRONG><A NAME="item_REG_NOTIFY_CHANGE_LAST_SET">REG_NOTIFY_CHANGE_LAST_SET</A></STRONG><BR>
  360. <DD>
  361. Notify if a value in a monitored key is added, deleted, or modified.
  362. <P></P>
  363. <DT><STRONG><A NAME="item_REG_NOTIFY_CHANGE_SECURITY">REG_NOTIFY_CHANGE_SECURITY</A></STRONG><BR>
  364. <DD>
  365. Notify a security descriptor of a monitored key is changed.
  366. <P></P>
  367. <DT><STRONG><A NAME="item_REG_NOTIFY_CHANGE_ATTRIBUTES">REG_NOTIFY_CHANGE_ATTRIBUTES</A></STRONG><BR>
  368. <DD>
  369. Notify if any attributes of a monitored key are changed [class
  370. name or security descriptors].
  371. <P></P></DL>
  372. <P><CODE>$hEvent</CODE> is ignored unless <CODE>$bAsync</CODE> is true.  Otherwise, <CODE>$hEvent</CODE>
  373. is a handle to a Win32 <EM>event</EM> that will be signaled when changes are
  374. to be reported.</P>
  375. <P>If <CODE>$bAsync</CODE> is true, then <A HREF="#item_RegNotifyChangeKeyValue"><CODE>RegNotifyChangeKeyValue()</CODE></A> returns
  376. immediately and uses <CODE>$hEvent</CODE> to notify your process of changes.
  377. If <CODE>$bAsync</CODE> is false, then <A HREF="#item_RegNotifyChangeKeyValue"><CODE>RegNotifyChangeKeyValue()</CODE></A> does
  378. not return until there is a change to be notified of.</P>
  379. <P>This routine does not work with Registry keys on remote computers.</P>
  380. <DT><STRONG><A NAME="item_RegOpenKey">RegOpenKey( $hKey, $sSubKey, $ohSubKey )</A></STRONG><BR>
  381. <DD>
  382. This routine is meant only for compatibility with Windows version
  383. 3.1.  Use <A HREF="#item_RegOpenKeyEx"><CODE>RegOpenKeyEx()</CODE></A> instead.
  384. <P></P>
  385. <DT><STRONG><A NAME="item_RegOpenKeyEx">RegOpenKeyEx( $hKey, $sSubKey, $uOptions, $uAccess, $ohSubKey )</A></STRONG><BR>
  386. <DD>
  387. Opens an existing Registry key.
  388. <P><CODE>$hKey</CODE> is the handle to a Registry key [either <CODE>HKEY_*</CODE> or from
  389. a previous call].</P>
  390. <P><CODE>$sSubKey</CODE> is the name of an existing subkey to be opened.
  391. Can be <CODE>""</CODE> or <CODE>[]</CODE> to open an additional handle to the
  392. key specified by <CODE>$hKey</CODE>.</P>
  393. <P><CODE>$iOptions</CODE> is a numeric value containing bits that control options
  394. used while open the subkey.  There are currently no supported options
  395. so this parameters should be specified as <CODE>0</CODE>.</P>
  396. <P><CODE>$iAccess</CODE> is a numeric mask of bits specifying what type of
  397. access is desired when opening the new subkey.  Should be a
  398. combination of one or more of the following bit masks:</P>
  399. <DL>
  400. <DT><STRONG><A NAME="item_KEY_ALL_ACCESS">KEY_ALL_ACCESS</A></STRONG><BR>
  401. <DD>
  402. <PRE>
  403.     KEY_READ | KEY_WRITE | KEY_CREATE_LINK</PRE>
  404. <DT><STRONG><A NAME="item_KEY_READ">KEY_READ</A></STRONG><BR>
  405. <DD>
  406. <PRE>
  407.     KEY_QUERY_VALUE | KEY_ENUMERATE_SUBKEYS | KEY_NOTIFY | STANDARD_RIGHTS_READ</PRE>
  408. <DT><STRONG><A NAME="item_KEY_WRITE">KEY_WRITE</A></STRONG><BR>
  409. <DD>
  410. <PRE>
  411.     KEY_SET_VALUE | KEY_CREATE_SUB_KEY | STANDARD_RIGHTS_WRITE</PRE>
  412. <DT><STRONG><A NAME="item_KEY_QUERY_VALUE">KEY_QUERY_VALUE</A></STRONG><BR>
  413. <DD>
  414. <DT><STRONG><A NAME="item_KEY_SET_VALUE">KEY_SET_VALUE</A></STRONG><BR>
  415. <DD>
  416. <DT><STRONG><A NAME="item_KEY_ENUMERATE_SUB_KEYS">KEY_ENUMERATE_SUB_KEYS</A></STRONG><BR>
  417. <DD>
  418. <DT><STRONG><A NAME="item_KEY_CREATE_SUB_KEY">KEY_CREATE_SUB_KEY</A></STRONG><BR>
  419. <DD>
  420. <DT><STRONG><A NAME="item_KEY_NOTIFY">KEY_NOTIFY</A></STRONG><BR>
  421. <DD>
  422. <DT><STRONG><A NAME="item_KEY_EXECUTE">KEY_EXECUTE</A></STRONG><BR>
  423. <DD>
  424. Same as <A HREF="#item_KEY_READ"><CODE>KEY_READ</CODE></A>.
  425. <P></P>
  426. <DT><STRONG><A NAME="item_KEY_CREATE_LINK">KEY_CREATE_LINK</A></STRONG><BR>
  427. <DD>
  428. Allows you to create a symbolic link like <CODE>HKEY_CLASSES_ROOT</CODE>
  429. and <CODE>HKEY_CURRENT_USER</CODE> if the method for doing so were documented.
  430. <P></P></DL>
  431. <P><CODE>$phKey</CODE> will be set to the handle to be used to access the new subkey.</P>
  432. <DT><STRONG><A NAME="item_RegQueryInfoKey">RegQueryInfoKey( $hKey, $osClass, $iolClass, $pNull, $ocSubKeys, $olSubKey, $olSubClass, $ocValues, $olValName, $olValData, $olSecDesc, $opftTime )</A></STRONG><BR>
  433. <DD>
  434. Gets miscellaneous information about an open Registry key.
  435. <P><CODE>$hKey</CODE> is the handle to a Registry key [either <CODE>HKEY_*</CODE> or from
  436. a previous call].</P>
  437. <P><CODE>$sClass</CODE> will be set to the class name for the key.  Can be
  438. <CODE>[]</CODE> if you don't care about the class.</P>
  439. <P><CODE>$plClass</CODE> initially specifies the [minimum] buffer size to be
  440. allocated for <CODE>$sClass</CODE> and will be set to the length of the
  441. key's class name.  See <A HREF="#buffer sizes">Buffer sizes</A> for more information.
  442. You may omit this parameter to get the same effect as passing in
  443. <CODE>[]</CODE> for it.</P>
  444. <P><CODE>$pNull</CODE> is reserved for future used and should be passed as <CODE>[]</CODE>.</P>
  445. <P><CODE>$pcSubKeys</CODE> will be set to the count of the number of subkeys directly
  446. under this key.  Can be <CODE>[]</CODE>.</P>
  447. <P><CODE>$plSubKey</CODE> will be set to the length of the longest subkey name.
  448. Can be <CODE>[]</CODE>.</P>
  449. <P><CODE>$plSubClass</CODE> will be set to the length of the longest class name
  450. used with an immediate subkey of this key.  Can be <CODE>[]</CODE>.</P>
  451. <P><CODE>$pcValues</CODE> will be set to the count of the number of values in
  452. this key.  Can be <CODE>[]</CODE>.</P>
  453. <P><CODE>$plValName</CODE> will be set to the length of the longest value name
  454. in this key.  Can be <CODE>[]</CODE>.</P>
  455. <P><CODE>$plValData</CODE> will be set to the length of the longest value data
  456. in this key.  Can be <CODE>[]</CODE>.</P>
  457. <P><CODE>$plSecDesc</CODE> will be set to the length of this key's [longest?]
  458. security descriptor.</P>
  459. <P><CODE>$pftTime</CODE> will be set to a <CODE>FILETIME</CODE> structure packed
  460. into a Perl string and indicating when this key was last changed.
  461. Can be <CODE>[]</CODE>.</P>
  462. <P></P>
  463. <DT><STRONG><A NAME="item_RegQueryMultipleValues">RegQueryMultipleValues( $hKey, $ioarValueEnts, $icValueEnts, $opBuffer, $iolBuffer )</A></STRONG><BR>
  464. <DD>
  465. Allows you to use a single call to query several values from a
  466. single open Registry key to maximize efficiency.
  467. <P><CODE>$hKey</CODE> is the handle to a Registry key [either <CODE>HKEY_*</CODE> or from
  468. a previous call].</P>
  469. <P><CODE>$pValueEnts</CODE> should contain a list of <CODE>VALENT</CODE> structures packed
  470. into a single Perl string.  Each <CODE>VALENT</CODE> structure should have
  471. the <CODE>ve_valuename</CODE> entry pointing to a string containing the name
  472. of a value stored in this key.  The remaining fields are set if
  473. the function succeeds.</P>
  474. <P><CODE>$cValueEnts</CODE> should contain the count of the number of <CODE>VALENT</CODE>
  475. structures contained in <CODE>$pValueEnts</CODE>.</P>
  476. <P><CODE>$pBuffer</CODE> will be set to the data from all of the requested values
  477. concatenated into a single Perl string.</P>
  478. <P><CODE>$plBuffer</CODE> initially specifies the [minimum] buffer size to be
  479. allocated for <CODE>$sBuffer</CODE> and will be set to the total length of
  480. the data to be written to <CODE>$sBuffer</CODE>.  See <A HREF="#buffer sizes">Buffer sizes</A> for
  481. more information.  You may omit this parameter to get the same
  482. effect as passing in <CODE>[]</CODE> for it.</P>
  483. <P>Here is sample code to populate <CODE>$pValueEnts</CODE>:</P>
  484. <PRE>
  485.     $cValueEnts= @ValueNames;
  486.     $pValueEnts= pack( " p x4 x4 x4 " x $cValueEnts, @ValueNames );</PRE>
  487. <P>Here is sample code to retrieve the data type and data length
  488. returned in <CODE>$pValueEnts</CODE>:</P>
  489. <PRE>
  490.     @Lengths= unpack( " x4 L x4 x4 " x $cValueEnts, $pValueEnts );
  491.     @Types=   unpack( " x4 x4 x4 L " x $cValueEnts, $pValueEnts );</PRE>
  492. <P>Given the above, and assuming you haven't modified <CODE>$sBuffer</CODE> since
  493. the call, you can also extract the value data strings from <CODE>$sBuffer</CODE>
  494. by using the pointers returned in <CODE>$pValueEnts</CODE>:</P>
  495. <PRE>
  496.     @Data=    unpack(  join( "", map(" x4 x4 P$_ x4 ",@Lengths) ),
  497.                 $pValueEnts  );</PRE>
  498. <P>Much better is to use the lengths and extract directly from
  499. <CODE>$sBuffer</CODE> using <A HREF="../../../lib/Pod/perlfunc.html#item_unpack"><CODE>unpack()</CODE></A> [or <A HREF="../../../lib/Pod/perlfunc.html#item_substr"><CODE>substr()</CODE></A>]:</P>
  500. <PRE>
  501.     @Data= unpack( join("",map("P$_",@Lengths)), $sBuffer );</PRE>
  502. <P></P>
  503. <DT><STRONG><A NAME="item_RegQueryValue">RegQueryValue( $hKey, $sSubKey, $osValueData, $iolValueData )</A></STRONG><BR>
  504. <DD>
  505. This routine is meant only for compatibility with Windows version
  506. 3.1.  Use <A HREF="#item_RegQueryValueEx"><CODE>RegQueryValueEx()</CODE></A> instead.  This routine can only
  507. query unamed values (a.k.a. ``default values'').
  508. <P></P>
  509. <DT><STRONG><A NAME="item_RegQueryValueEx">RegQueryValueEx( $hKey, $sValueName, $pNull, $ouType, $opValueData, $iolValueData )</A></STRONG><BR>
  510. <DD>
  511. Lets you look up value data using the name of the value stored in an
  512. open Registry key.
  513. <P><CODE>$hKey</CODE> is the handle to a Registry key [either <CODE>HKEY_*</CODE> or from
  514. a previous call].</P>
  515. <P><CODE>$sValueName</CODE> is the name of the value whose data you wish to
  516. retrieve.</P>
  517. <P><CODE>$pNull</CODE> this parameter is reserved for future use and should be
  518. specified as <CODE>[]</CODE>.</P>
  519. <P><CODE>$piType</CODE> will be set to indicate what type of data is stored in
  520. the named value.  Will be set to a <CODE>REG_*</CODE> value if the function
  521. succeeds.</P>
  522. <P><CODE>$pValueData</CODE> will be set to the value data [packed into a Perl
  523. string] that is stored in the named value.  Can be <CODE>[]</CODE> if you
  524. don't care about the value data.</P>
  525. <P><CODE>$plValueData</CODE> initially specifies the [minimum] buffer size to be
  526. allocated for <CODE>$sValueData</CODE> and will be set to the size [always
  527. in bytes] of the data to be written to <CODE>$sValueData</CODE>.  See
  528. <A HREF="#buffer sizes">Buffer sizes</A> for more information.</P>
  529. <P></P>
  530. <DT><STRONG><A NAME="item_RegReplaceKey">RegReplaceKey( $hKey, $sSubKey, $sNewFile, $sOldFile )</A></STRONG><BR>
  531. <DD>
  532. Lets you replace an entire hive when the system is next booted.
  533. <P><CODE>$hKey</CODE> is the handle to a Registry key that has hives
  534. loaded in it.  This must be <CODE>HKEY_LOCAL_MACHINE</CODE>,
  535. <CODE>HKEY_USERS</CODE>, or a remote version of one of these from
  536. a call to <A HREF="#item_RegConnectRegistry"><CODE>RegConnectRegistry()</CODE></A>.</P>
  537. <P><CODE>$sSubKey</CODE> is the name of the subkey of <CODE>$hKey</CODE> whose hive
  538. you wish to have replaced on the next reboot.</P>
  539. <P><CODE>$sNewFile</CODE> is the name of a file that will replace the existing
  540. hive file when the system reboots.</P>
  541. <P><CODE>$sOldFile</CODE> is the file name to save the current hive file to
  542. when the system reboots.</P>
  543. <P></P>
  544. <DT><STRONG><A NAME="item_RegRestoreKey">RegRestoreKey( $hKey, $sFileName, $uFlags )</A></STRONG><BR>
  545. <DD>
  546. Reads in a hive file and copies its contents over an existing
  547. Registry tree.
  548. <P><CODE>$hKey</CODE> is the handle to a Registry key [either <CODE>HKEY_*</CODE> or from
  549. a previous call].</P>
  550. <P><CODE>$sFileName</CODE> is the name of the hive file to be read.  For each
  551. value and subkey in this file, a value or subkey will be added
  552. or replaced in <CODE>$hKey</CODE>.</P>
  553. <P><CODE>$uFlags</CODE> is usally <CODE>0</CODE>.  It can also be <CODE>REG_WHOLE_HIVE_VOLATILE</CODE>
  554. which, rather than copying the hive over the existing key,
  555. replaces the existing key with a temporary, memory-only Registry
  556. key and then copies the hive contents into it.  This option only
  557. works if <CODE>$hKey</CODE> is <CODE>HKEY_LOCAL_MACHINE</CODE>, <CODE>HKEY_USERS</CODE>, or a
  558. remote version of one of these from a call to <A HREF="#item_RegConnectRegistry"><CODE>RegConnectRegistry()</CODE></A>.</P>
  559. <P></P>
  560. <DT><STRONG><A NAME="item_RegSaveKey">RegSaveKey( $hKey, $sFileName, $pSecAttr )</A></STRONG><BR>
  561. <DD>
  562. Dumps any open Registry key and all of its subkeys and values into
  563. a new hive file.
  564. <P><CODE>$hKey</CODE> is the handle to a Registry key [either <CODE>HKEY_*</CODE> or from
  565. a previous call].</P>
  566. <P><CODE>$sFileName</CODE> is the name of the file that the Registry tree should
  567. be saved to.  It is interpretted relative to the
  568. <CODE>%SystemRoot%/System32/config</CODE> directory on the computer where
  569. the <CODE>$hKey</CODE> key resides.</P>
  570. <P><CODE>$pSecAttr</CODE> contains a <CODE>SECURITY_ATTRIBUTES</CODE> structure that specifies
  571. the permissions to be set on the new file that is created.  This can
  572. be <CODE>[]</CODE>.</P>
  573. <P></P>
  574. <DT><STRONG><A NAME="item_RegSetKeySecurity">RegSetKeySecurity( $hKey, $uSecInfo, $pSecDesc )</A></STRONG><BR>
  575. <DD>
  576. Sets one of the <CODE>SECURITY_DESCRIPTOR</CODE> structures describing part
  577. of the security for an open Registry key.
  578. <P><CODE>$hKey</CODE> is the handle to a Registry key [either <CODE>HKEY_*</CODE> or from
  579. a previous call].</P>
  580. <P><CODE>$uSecInfo</CODE> is a numeric <CODE>SECURITY_INFORMATION</CODE> value that
  581. specifies which <CODE>SECURITY_DESCRIPTOR</CODE> structure to set.  Should
  582. be <CODE>OWNER_SECURITY_INFORMATION</CODE>, <CODE>GROUP_SECURITY_INFORMATION</CODE>,
  583. <CODE>DACL_SECURITY_INFORMATION</CODE>, or <CODE>SACL_SECURITY_INFORMATION</CODE>.</P>
  584. <P><CODE>$pSecDesc</CODE> contains the new <CODE>SECURITY_DESCRIPTOR</CODE> structure
  585. packed into a Perl string.</P>
  586. <P></P>
  587. <DT><STRONG><A NAME="item_RegSetValue">RegSetValue( $hKey, $sSubKey, $uType, $sValueData, $lValueData )</A></STRONG><BR>
  588. <DD>
  589. This routine is meant only for compatibility with Windows version
  590. 3.1.  Use <A HREF="#item_RegSetValueEx"><CODE>RegSetValueEx()</CODE></A> instead.  This routine can only
  591. set unamed values (a.k.a. ``default values'').
  592. <P></P>
  593. <DT><STRONG><A NAME="item_RegSetValueEx">RegSetValueEx( $hKey, $sName, $uZero, $uType, $pData, $lData )</A></STRONG><BR>
  594. <DD>
  595. Sets a value.
  596. <P><CODE>$hKey</CODE> is the handle to a Registry key [either <CODE>HKEY_*</CODE> or from
  597. a previous call].</P>
  598. <P><CODE>$sName</CODE> is the name of the value to be set.</P>
  599. <P><CODE>$uZero</CODE> is reserved for future use and should be specified as <CODE>0</CODE>.</P>
  600. <P><CODE>$uType</CODE> is the type of data stored in <CODE>$pData</CODE>.  It should
  601. be a <CODE>REG_*</CODE> value.</P>
  602. <P><CODE>$pData</CODE> is the value data packed into a Perl string.</P>
  603. <P><CODE>$lData</CODE> the length of the value data that is stored in <CODE>$pData</CODE>. 
  604. You will usually omit this parameter or pass in <CODE>0</CODE> to have
  605. <A HREF="../../../lib/Pod/perlfunc.html#item_length"><CODE>length($pData)</CODE></A> used.  In both of these cases, if <CODE>$iType</CODE> is
  606. <CODE>REG_SZ</CODE> or <CODE>REG_EXPAND_SZ</CODE>, <A HREF="#item_RegSetValueEx"><CODE>RegSetValueEx()</CODE></A> will append a
  607. trailing <CODE>'\0'</CODE> to the end of <CODE>$pData</CODE> [unless there is already
  608. one].</P>
  609. <P></P>
  610. <DT><STRONG><A NAME="item_RegUnLoadKey">RegUnLoadKey( $hKey, $sSubKey )</A></STRONG><BR>
  611. <DD>
  612. Unloads a previously loaded hive file.  That is, closes the
  613. hive file then deletes the subkey that was providing access
  614. to it.
  615. <P><CODE>$hKey</CODE> is the handle to a Registry key that has hives
  616. loaded in it.  This must be <CODE>HKEY_LOCAL_MACHINE</CODE>, <CODE>HKEY_USERS</CODE>,
  617. or a remote version of one of these from a call to
  618. <A HREF="#item_RegConnectRegistry"><CODE>RegConnectRegistry()</CODE></A>.</P>
  619. <P><CODE>$sSubKey</CODE> is the name of the subkey whose hive you wish to
  620. have unloaded.</P>
  621. <P></P>
  622. <DT><STRONG><A NAME="item_%3AFuncA">:FuncA</A></STRONG><BR>
  623. <DD>
  624. The ASCI-specific function names.
  625. <P>Each of these is identical to version listed above without the
  626. trailing ``A'':</P>
  627. <PRE>
  628.         AbortSystemShutdownA    InitiateSystemShutdownA
  629.         RegConnectRegistryA     RegCreateKeyA           RegCreateKeyExA
  630.         RegDeleteKeyA           RegDeleteValueA         RegEnumKeyA
  631.         RegEnumKeyExA           RegEnumValueA           RegLoadKeyA
  632.         RegOpenKeyA             RegOpenKeyExA           RegQueryInfoKeyA
  633.         RegQueryMultipleValuesA RegQueryValueA          RegQueryValueExA
  634.         RegReplaceKeyA          RegRestoreKeyA          RegSaveKeyA
  635.         RegSetValueA            RegSetValueExA          RegUnLoadKeyA</PRE>
  636. <P></P>
  637. <DT><STRONG><A NAME="item_%3AFuncW">:FuncW</A></STRONG><BR>
  638. <DD>
  639. The UNICODE-specific function names.  These are the same as the
  640. version listed above without the trailing ``W'' except that string
  641. parameters are UNICODE strings rather than ASCII strings, as
  642. indicated.
  643. <P></P>
  644. <DT><STRONG><A NAME="item_AbortSystemShutdownW">AbortSystemShutdownW( $swComputerName )</A></STRONG><BR>
  645. <DD>
  646. <CODE>$swComputerName</CODE> is UNICODE.
  647. <P></P>
  648. <DT><STRONG><A NAME="item_InitiateSystemShutdownW">InitiateSystemShutdownW( $swComputer, $swMessage, $uTimeoutSecs, $bForce, $bReboot )</A></STRONG><BR>
  649. <DD>
  650. <CODE>$swComputer</CODE> and <CODE>$swMessage</CODE> are UNICODE.
  651. <P></P>
  652. <DT><STRONG><A NAME="item_RegConnectRegistryW">RegConnectRegistryW( $swComputer, $hRootKey, $ohKey )</A></STRONG><BR>
  653. <DD>
  654. <CODE>$swComputer</CODE> is UNICODE.
  655. <P></P>
  656. <DT><STRONG><A NAME="item_RegCreateKeyW">RegCreateKeyW( $hKey, $swSubKey, $ohSubKey )</A></STRONG><BR>
  657. <DD>
  658. <CODE>$swSubKey</CODE> is UNICODE.
  659. <P></P>
  660. <DT><STRONG><A NAME="item_RegCreateKeyExW">RegCreateKeyExW( $hKey, $swSubKey, $uZero, $swClass, $uOpts, $uAccess, $pSecAttr, $ohNewKey, $ouDisp )</A></STRONG><BR>
  661. <DD>
  662. <CODE>$swSubKey</CODE> and <CODE>$swClass</CODE> are UNICODE.
  663. <P></P>
  664. <DT><STRONG><A NAME="item_RegDeleteKeyW">RegDeleteKeyW( $hKey, $swSubKey )</A></STRONG><BR>
  665. <DD>
  666. <CODE>$swSubKey</CODE> is UNICODE.
  667. <P></P>
  668. <DT><STRONG><A NAME="item_RegDeleteValueW">RegDeleteValueW( $hKey, $swValueName )</A></STRONG><BR>
  669. <DD>
  670. <CODE>$swValueName</CODE> is UNICODE.
  671. <P></P>
  672. <DT><STRONG><A NAME="item_RegEnumKeyW">RegEnumKeyW( $hKey, $uIndex, $oswName, $ilwNameSize )</A></STRONG><BR>
  673. <DD>
  674. <CODE>$oswName</CODE> is UNICODE and <CODE>$ilwNameSize</CODE> is measured as number of
  675. <CODE>WCHAR</CODE>s.
  676. <P></P>
  677. <DT><STRONG><A NAME="item_RegEnumKeyExW">RegEnumKeyExW( $hKey, $uIndex, $oswName, $iolwName, $pNull, $oswClass, $iolwClass, $opftLastWrite )</A></STRONG><BR>
  678. <DD>
  679. <CODE>$swName</CODE> and <CODE>$swClass</CODE> are UNICODE and <CODE>$iolwName</CODE> and <CODE>$iolwClass</CODE>
  680. are measured as number of <CODE>WCHAR</CODE>s.
  681. <P></P>
  682. <DT><STRONG><A NAME="item_RegEnumValueW">RegEnumValueW( $hKey, $uIndex, $oswName, $iolwName, $pNull, $ouType, $opData, $iolData )</A></STRONG><BR>
  683. <DD>
  684. <CODE>$oswName</CODE> is UNICODE and <CODE>$iolwName</CODE> is measured as number
  685. of <CODE>WCHAR</CODE>s.
  686. <P><CODE>$opData</CODE> is UNICODE if <CODE>$piType</CODE> is <CODE>REG_SZ</CODE>, <CODE>REG_EXPAND_SZ</CODE>,
  687. or <CODE>REG_MULTI_SZ</CODE>.  Note that <CODE>$iolData</CODE> is measured as number
  688. of bytes even in these cases.</P>
  689. <P></P>
  690. <DT><STRONG><A NAME="item_RegLoadKeyW">RegLoadKeyW( $hKey, $swSubKey, $swFileName )</A></STRONG><BR>
  691. <DD>
  692. <CODE>$swSubKey</CODE> and <CODE>$swFileName</CODE> are UNICODE.
  693. <P></P>
  694. <DT><STRONG><A NAME="item_RegOpenKeyW">RegOpenKeyW( $hKey, $swSubKey, $ohSubKey )</A></STRONG><BR>
  695. <DD>
  696. <CODE>$swSubKey</CODE> is UNICODE.
  697. <P></P>
  698. <DT><STRONG><A NAME="item_RegOpenKeyExW">RegOpenKeyExW( $hKey, $swSubKey, $uOptions, $uAccess, $ohSubKey )</A></STRONG><BR>
  699. <DD>
  700. <CODE>$swSubKey</CODE> is UNICODE.
  701. <P></P>
  702. <DT><STRONG><A NAME="item_RegQueryInfoKeyW">RegQueryInfoKeyW( $hKey, $oswClass, $iolwClass, $pNull, $ocSubKeys, $olwSubKey, $olwSubClass, $ocValues, $olwValName, $olValData, $olSecDesc, $opftTime )</A></STRONG><BR>
  703. <DD>
  704. <CODE>$swClass</CODE> is UNICODE.  <CODE>$iolwClass</CODE>, <CODE>$olwSubKey</CODE>, <CODE>$olwSubClass</CODE>,
  705. and <CODE>$olwValName</CODE> are measured as number of <CODE>WCHAR</CODE>s.  Note that
  706. <CODE>$olValData</CODE> is measured as number of bytes.
  707. <P></P>
  708. <DT><STRONG><A NAME="item_RegQueryMultipleValuesW">RegQueryMultipleValuesW( $hKey, $ioarValueEnts, $icValueEnts, $opBuffer, $iolBuffer )
  709. bool <CODE>_RegQueryMultipleValuesW(hKey,ioarValueEnts,icValueEnts,opBuffer,iolBuffer)</CODE></A></STRONG><BR>
  710. <DD>
  711. The <CODE>ve_valuename</CODE> fields of the <CODE>VALENT</CODE> structures in
  712. <CODE>$ioarValueEnts</CODE> are UNICODE.  Values of type <CODE>REG_SZ</CODE>,
  713. <CODE>REG_EXPAND_SZ</CODE>, and <CODE>REG_MULTI_SZ</CODE> are written to <CODE>$opBuffer</CODE>
  714. in UNICODE.  Note that <CODE>$iolBuffer</CODE> and the <CODE>ve_valuelen</CODE> fields
  715. of the <CODE>VALENT</CODE> structures are measured as number of bytes.
  716. <P></P>
  717. <DT><STRONG><A NAME="item_RegQueryValueW">RegQueryValueW( $hKey, $swSubKey, $oswValueData, $iolValueData )</A></STRONG><BR>
  718. <DD>
  719. <CODE>$swSubKey</CODE> and <CODE>$oswValueData</CODE> are UNICODE.  Note that
  720. <CODE>$iolValueData</CODE> is measured as number of bytes.
  721. <P></P>
  722. <DT><STRONG><A NAME="item_RegQueryValueExW">RegQueryValueExW( $hKey, $swName, $pNull, $ouType, $opData, $iolData )</A></STRONG><BR>
  723. <DD>
  724. <CODE>$swName</CODE> is UNICODE.
  725. <P><CODE>$opData</CODE> is UNICODE if <CODE>$ouType</CODE> is <CODE>REG_SZ</CODE>, <CODE>REG_EXPAND_SZ</CODE>,
  726. or <CODE>REG_MULTI_SZ</CODE>.  Note that <CODE>$iolData</CODE> is measured as number of
  727. bytes even in these cases.</P>
  728. <P></P>
  729. <DT><STRONG><A NAME="item_RegReplaceKeyW">RegReplaceKeyW( $hKey, $swSubKey, $swNewFile, $swOldFile )</A></STRONG><BR>
  730. <DD>
  731. <CODE>$swSubKey</CODE>, <CODE>$swNewFile</CODE>, and <CODE>$swOldFile</CODE> are UNICODE.
  732. <P></P>
  733. <DT><STRONG><A NAME="item_RegRestoreKeyW">RegRestoreKeyW( $hKey, $swFileName, $uFlags )</A></STRONG><BR>
  734. <DD>
  735. <CODE>$swFileName</CODE> is UNICODE.
  736. <P></P>
  737. <DT><STRONG><A NAME="item_RegSaveKeyW">RegSaveKeyW( $hKey, $swFileName, $pSecAttr )</A></STRONG><BR>
  738. <DD>
  739. <CODE>$swFileName</CODE> is UNICODE.
  740. <P></P>
  741. <DT><STRONG><A NAME="item_RegSetValueW">RegSetValueW( $hKey, $swSubKey, $uType, $swValueData, $lValueData )</A></STRONG><BR>
  742. <DD>
  743. <CODE>$swSubKey</CODE> and <CODE>$swValueData</CODE> are UNICODE.  Note that
  744. <CODE>$lValueData</CODE> is measured as number of bytes even though
  745. <CODE>$swValueData</CODE> is always UNICODE.
  746. <P></P>
  747. <DT><STRONG><A NAME="item_RegSetValueExW">RegSetValueExW( $hKey, $swName, $uZero, $uType, $pData, $lData )</A></STRONG><BR>
  748. <DD>
  749. <CODE>$swName</CODE> is UNICODE.
  750. <P><CODE>$pData</CODE> is UNICODE if <CODE>$uType</CODE> is <CODE>REG_SZ</CODE>, <CODE>REG_EXPAND_SZ</CODE>,
  751. or <CODE>REG_MULTI_SZ</CODE>.  Note that <CODE>$lData</CODE> is measured as number of
  752. bytes even in these cases.</P>
  753. <P></P>
  754. <DT><STRONG><A NAME="item_RegUnLoadKeyW">RegUnLoadKeyW( $hKey, $swSubKey )</A></STRONG><BR>
  755. <DD>
  756. <CODE>$swSubKey</CODE> is UNICODE.
  757. <P></P>
  758. <DT><STRONG><A NAME="item_%3AHKEY_">:HKEY_</A></STRONG><BR>
  759. <DD>
  760. All <CODE>HKEY_*</CODE> constants:
  761. <PRE>
  762.         HKEY_CLASSES_ROOT       HKEY_CURRENT_CONFIG     HKEY_CURRENT_USER
  763.         HKEY_DYN_DATA           HKEY_LOCAL_MACHINE      HKEY_PERFORMANCE_DATA
  764.         HKEY_USERS</PRE>
  765. <P></P>
  766. <DT><STRONG><A NAME="item_%3AKEY_">:KEY_</A></STRONG><BR>
  767. <DD>
  768. All <CODE>KEY_*</CODE> constants:
  769. <PRE>
  770.         KEY_QUERY_VALUE         KEY_SET_VALUE           KEY_CREATE_SUB_KEY
  771.         KEY_ENUMERATE_SUB_KEYS  KEY_NOTIFY              KEY_CREATE_LINK
  772.         KEY_READ                KEY_WRITE               KEY_EXECUTE
  773.         KEY_ALL_ACCESS</PRE>
  774. <P></P>
  775. <DT><STRONG><A NAME="item_%3AREG_">:REG_</A></STRONG><BR>
  776. <DD>
  777. All <CODE>REG_*</CODE> constants:
  778. <PRE>
  779.         REG_CREATED_NEW_KEY             REG_OPENED_EXISTING_KEY
  780.         REG_LEGAL_CHANGE_FILTER         REG_NOTIFY_CHANGE_ATTRIBUTES
  781.         REG_NOTIFY_CHANGE_NAME          REG_NOTIFY_CHANGE_LAST_SET
  782.         REG_NOTIFY_CHANGE_SECURITY      REG_LEGAL_OPTION
  783.         REG_OPTION_BACKUP_RESTORE       REG_OPTION_CREATE_LINK
  784.         REG_OPTION_NON_VOLATILE         REG_OPTION_OPEN_LINK
  785.         REG_OPTION_RESERVED             REG_OPTION_VOLATILE
  786.         REG_WHOLE_HIVE_VOLATILE         REG_REFRESH_HIVE
  787.         REG_NO_LAZY_FLUSH</PRE>
  788. <PRE>
  789.         REG_NONE                        REG_SZ
  790.         REG_EXPAND_SZ                   REG_BINARY
  791.         REG_DWORD                       REG_DWORD_LITTLE_ENDIAN
  792.         REG_DWORD_BIG_ENDIAN            REG_LINK
  793.         REG_MULTI_SZ                    REG_RESOURCE_LIST
  794.         REG_FULL_RESOURCE_DESCRIPTOR    REG_RESOURCE_REQUIREMENTS_LIST</PRE>
  795. <P></P>
  796. <DT><STRONG><A NAME="item_%3AALL">:ALL</A></STRONG><BR>
  797. <DD>
  798. All of the above.
  799. <P></P></DL>
  800. </DL>
  801. <P>
  802. <H2><A NAME="the win32api:: heirarchy">The Win32API:: heirarchy</A></H2>
  803. <P>This and the other Win32API:: modules are meant to expose the
  804. nearly raw API calls so they can be used from Perl code in any
  805. way they might be used from C code.  This provides the following
  806. advantages:</P>
  807. <DL>
  808. <DT><STRONG><A NAME="item_Many_modules_can_be_written_by_people_that_don%27t">Many modules can be written by people that don't have a C compiler.</A></STRONG><BR>
  809. <DD>
  810. <DT><STRONG><A NAME="item_Encourages_more_module_code_to_be_written_in_Perl_">Encourages more module code to be written in Perl [not C].</A></STRONG><BR>
  811. <DD>
  812. Perl code is often much easier to inspect, debug, customize, and
  813. enhance than XS code.
  814. <P></P>
  815. <DT><STRONG><A NAME="item_Allows_those_already_familiar_with_the_Win32_API_t">Allows those already familiar with the Win32 API to get
  816. off to a quick start.</A></STRONG><BR>
  817. <DD>
  818. <DT><STRONG><A NAME="item_Provides_an_interactive_tool_%5BPerl%5D_for_explor">Provides an interactive tool [Perl] for exploring even
  819. obscure details of the Win32 API.</A></STRONG><BR>
  820. <DD>
  821. <DT><STRONG><A NAME="item_Ensures_that_native_Win32_data_structures_can_be_u">Ensures that native Win32 data structures can be used.</A></STRONG><BR>
  822. <DD>
  823. This allows maximum efficiency.  It also allows data from one
  824. module [for example, time or security information from the
  825. <CODE>Win32API::Registry</CODE> or <CODE>Win32API::File</CODE> modules] to be used
  826. with other modules [for example, <CODE>Win32API::Time</CODE> and
  827. <CODE>Win32API::Security</CODE>].
  828. <P></P>
  829. <DT><STRONG><A NAME="item_Provides_a_single_version_of_the_XS_interface_to_e">Provides a single version of the XS interface to each API
  830. call where improvements can be collected.</A></STRONG><BR>
  831. <DD>
  832. </DL>
  833. <P>
  834. <H2><A NAME="buffer sizes">Buffer sizes</A></H2>
  835. <P>For each argument that specifies a buffer size, a value of <CODE>0</CODE>
  836. can be passed.  For arguments that are pointers to buffer sizes,
  837. you can also pass in <CODE>NULL</CODE> by specifying an empty list reference,
  838. <CODE>[]</CODE>.  Both of these cases will ensure that the variable has
  839. &some; buffer space allocated to it and pass in that buffer's
  840. allocated size.  Many of the calls indicate, via <CODE>ERROR_MORE_DATA</CODE>,
  841. that the buffer size was not sufficient and the <EM>Registry.xs</EM>
  842. code will automatically enlarge the buffer to the required size
  843. and repeat the call.</P>
  844. <P>Numeric buffer sizes are used as minimum initial sizes for the
  845. buffers.  The larger of this size and the size of space already
  846. allocated to the scalar will be passed to the underlying routine. 
  847. If that size was insufficient, and the underlying call provides
  848. an easy method for determining the needed buffer size, then the
  849. buffer will be enlarged and the call repeated as above.</P>
  850. <P>The underlying calls define buffer size arguments as unsigned, so
  851. negative buffer sizes are treated as very large positive buffer
  852. sizes which usually cause <CODE>malloc()</CODE> to fail.</P>
  853. <P>To force the <EM>Registry.xs</EM> code to pass in a specific value for
  854. a buffer size, preceed the size with <CODE>"="</CODE>.  Buffer sizes that
  855. are passed in as strings starting with an equal sign will have
  856. the equal sign stripped and the remainder of the string interpretted
  857. as a number [via C's <CODE>strtoul()</CODE> using only base 10] which will be
  858. passed to the underlying routine [even if the allocated buffer is
  859. actually larger].  The <EM>Registry.xs</EM> code will enlarge the buffer
  860. to the specified size, if needed, but will not enlarge the buffer
  861. based on the underlying routine requesting more space.</P>
  862. <P>Some Reg*() calls may not currently set the buffer size when they
  863. return <CODE>ERROR_MORE_DATA</CODE>.  But some that are not documented as
  864. doing so, currently do so anyway.  So the code assumes that any
  865. routine &might; do this and resizes any buffers and repeats the
  866. call.   We hope that eventually all routines will provide this
  867. feature.</P>
  868. <P>When you use <CODE>[]</CODE> for a buffer size, you can still find the
  869. length of the data returned by using <A HREF="../../../lib/Pod/perlfunc.html#item_length"><CODE>length($buffer)</CODE></A>.  Note
  870. that this length will be in bytes while a few of the buffer
  871. sizes would have been in units of wide characters.</P>
  872. <P>Note that the RegQueryValueEx*() and RegEnumValue*() calls
  873. will trim the trailing <CODE>'\0'</CODE> [if present] from the returned data
  874. values of type <CODE>REG_SZ</CODE> or <CODE>REG_EXPAND_SZ</CODE> but only if the
  875. value data length argument is omitted [or specified as <CODE>[]</CODE>].</P>
  876. <P>The RegSetValueEx*() calls will add a trailing <CODE>'\0'</CODE> [if
  877. missing] to the supplied data values of type <CODE>REG_SZ</CODE> and
  878. <CODE>REG_EXPAND_SZ</CODE> but only if the value data length argument is
  879. omitted [or specified as <CODE>0</CODE>].</P>
  880. <P>
  881. <H2><A NAME="hungarian notation">Hungarian Notation</A></H2>
  882. <P>The following abbreviations are used at the start of each parameter
  883. name to hint at aspects of how the parameter is used.  The prefix
  884. is always in lower case and followed by a capital letter that starts
  885. the descriptive part of the parameter name.  Several of the following
  886. abbreviations can be combined into a single prefix.</P>
  887. <P>Probably not all of these prefix notations are used by this module. 
  888. This document section is included in each <CODE>Win32API</CODE> module and
  889. so covers some notations not used by this specific module.</P>
  890. <DL>
  891. <DT><STRONG><A NAME="item_s">s</A></STRONG><BR>
  892. <DD>
  893. A string.  In C, a <CODE>'\0'</CODE>-terminated <CODE>char *</CODE>.  In Perl, just a
  894. string except that it will be truncated at the first <CODE>"\0"</CODE>, if
  895. it contains one.
  896. <P></P>
  897. <DT><STRONG><A NAME="item_sw">sw</A></STRONG><BR>
  898. <DD>
  899. A wide (UNICODE) string.  In C, a <CODE>L'\0'</CODE>-terminated <CODE>WCHAR *</CODE>.
  900. In Perl, a string that contains UNICODE data.  You can convert a
  901. string to UNICODE in Perl via:
  902. <PRE>
  903.     $string= "This is an example string";
  904.     $unicode= pack( "S*", unpack("C*",$string), 0 );</PRE>
  905. <P>Note that an explicit <CODE>L'\0'</CODE> must be added since Perl's implicit
  906. <CODE>'\0'</CODE> that it puts after each of its strings is not wide enough to
  907. terminate a UNICODE string.</P>
  908. <P>If a UNICODE string contains no non-ASCII characters, then you
  909. can convert it back into a normal string via:</P>
  910. <PRE>
  911.     $string= pack( "C*", unpack("S*",$unicode) );
  912.     $string =~ s/\0$//;</PRE>
  913. <P></P>
  914. <DT><STRONG><A NAME="item_p">p</A></STRONG><BR>
  915. <DD>
  916. A pointer to some buffer [usually containing some <CODE>struct</CODE>].  In C,
  917. a <CODE>void *</CODE>.  In Perl, a string that is usually manipulated using
  918. <A HREF="../../../lib/Pod/perlfunc.html#item_pack"><CODE>pack</CODE></A> and <A HREF="../../../lib/Pod/perlfunc.html#item_unpack"><CODE>unpack</CODE></A>.  The ``p'' is usually followed by more prefix
  919. <CODE>character(s)</CODE> to indicate what type of data is stored in the bufffer.
  920. <P></P>
  921. <DT><STRONG><A NAME="item_a">a</A></STRONG><BR>
  922. <DD>
  923. A packed array.  In C, an array [usually of <CODE>struct</CODE>s].  In Perl, a
  924. string containing the packed data.  The ``a'' is usually followed by
  925. more prefix <CODE>character(s)</CODE> to indicate the data type of the elements.
  926. <P>These packed arrays are also called ``vectors'' in places to avoid
  927. confusion with Perl arrays.</P>
  928. <P></P>
  929. <DT><STRONG><A NAME="item_n">n</A></STRONG><BR>
  930. <DD>
  931. A generic number.   In C, any of the integer or floating point data
  932. types.  In Perl, a number; either an integer, unsigned, or double
  933. [IV, UV, or NV, respectively].  Usually an integer.
  934. <P></P>
  935. <DT><STRONG><A NAME="item_iv">iv</A></STRONG><BR>
  936. <DD>
  937. A signed integral value.  In C, any of the signed integer data types. 
  938. In Perl, an integer [IV].
  939. <P></P>
  940. <DT><STRONG><A NAME="item_u">u</A></STRONG><BR>
  941. <DD>
  942. An unsigned integral value.  In C, any of the unsigned integer data
  943. types.  In Perl, an unsigned integer [UV].
  944. <P></P>
  945. <DT><STRONG><A NAME="item_d">d</A></STRONG><BR>
  946. <DD>
  947. A floating-point number.  In C, a <CODE>float</CODE> or <CODE>double</CODE> or, perhaps,
  948. a <CODE>long double</CODE>.  In Perl, a double-precision floating-point number
  949. [NV].
  950. <P></P>
  951. <DT><STRONG><A NAME="item_b">b</A></STRONG><BR>
  952. <DD>
  953. A Boolean value.  In C, any integer data type, though usually via
  954. a type alias of <CODE>bool</CODE> or <CODE>BOOL</CODE>, containing either a 0 [false] or
  955. non-zero [true] value.  In Perl, a scalar containing a Boolean value
  956. [<CODE>0</CODE>, <CODE>""</CODE>, or <A HREF="../../../lib/Pod/perlfunc.html#item_undef"><CODE>undef</CODE></A> for ``false'' and anything else for ``true''].
  957. <P></P>
  958. <DT><STRONG><A NAME="item_c">c</A></STRONG><BR>
  959. <DD>
  960. A count of items.  In C, any integer data type.  In Perl, an unsigned
  961. integer [UV].  Usually used in conjunction with a ``vector'' parameter
  962. [see <A HREF="#a">a</A> above] to indicate the number of elements.
  963. <P></P>
  964. <DT><STRONG><A NAME="item_l">l</A></STRONG><BR>
  965. <DD>
  966. A length (in bytes).  In C, any integer data type.  In Perl, an
  967. unsigned integer [UV].  Usually used in conjunction with a ``string''
  968. or ``pointer'' parameters [see <A HREF="#s">s</A> and <A HREF="#p">p</A> above] to indicate the
  969. buffer size or the size of the value stored in the buffer.
  970. <P>For strings, there is no general rule as to whether the trailing
  971. <CODE>'\0'</CODE> is included in such sizes.  For this reason, the <CODE>Win32API</CODE>
  972. modules follows the Perl rule of always allocating one extra byte
  973. and reporting buffer sizes as being one smaller than allocated in case
  974. the <CODE>'\0'</CODE> is not included in the size.</P>
  975. <P></P>
  976. <DT><STRONG><A NAME="item_lw">lw</A></STRONG><BR>
  977. <DD>
  978. A length measured as number of UNICODE characters.  In C, a count
  979. of <CODE>WCHAR</CODE>s.  In Perl, an unsigned integer [UV] counting ``shorts''
  980. [see ``s'' and ``S'' in <A HREF="../../../lib/Pod/perlfunc.html#item_pack"><CODE>pack</CODE></A> and <A HREF="../../../lib/Pod/perlfunc.html#item_unpack"><CODE>unpack</CODE></A>].
  981. <P>For UNICODE strings, the trailing <CODE>L'\0'</CODE> may or may not be included
  982. in a length so, again, we always alllocate extra room for one and
  983. don't report that extra space.</P>
  984. <P></P>
  985. <DT><STRONG><A NAME="item_h">h</A></STRONG><BR>
  986. <DD>
  987. A handle.  In C, a <CODE>HANDLE</CODE> or more-specific handle data type.  In
  988. Perl, a signed integer [IV].  In C, these handles are often actually
  989. some type of pointer, but Perl just treats them as opaque numbers,
  990. as it should.
  991. <P></P>
  992. <DT><STRONG><A NAME="item_r">r</A></STRONG><BR>
  993. <DD>
  994. A record.  In C, almost always a <CODE>struct</CODE> or perhaps <CODE>union</CODE>.  Note
  995. that C <CODE>struct</CODE>s are rarely passed by value so the ``r'' is almost
  996. always preceeded by a ``p'' or `` ''a`` [see <A HREF="#p">p</A> and <A HREF="#a">a</A> above].  For
  997. the very rare unadorned ''r``, Perl stores the record in the same way
  998. as a ''pr``, that is, in a string.  For the very rare case where Perl
  999. explicitly stores a pointer to the <CODE>struct</CODE> rather than storing the
  1000. <CODE>struct</CODE> directly in a Perl string, the prefix ''pp`` or ''ppr`` or even
  1001. ''par`` is used.
  1002. <P></P>
  1003. <DT><STRONG><A NAME="item_sv">sv</A></STRONG><BR>
  1004. <DD>
  1005. <DT><STRONG><A NAME="item_rv">rv</A></STRONG><BR>
  1006. <DD>
  1007. <DT><STRONG><A NAME="item_hv">hv</A></STRONG><BR>
  1008. <DD>
  1009. <DT><STRONG><A NAME="item_av">av</A></STRONG><BR>
  1010. <DD>
  1011. <DT><STRONG><A NAME="item_cv">cv</A></STRONG><BR>
  1012. <DD>
  1013. A Perl data type.  Respectively, a scalar value [SV], a reference
  1014. [RV] [usually to a scalar], a hash [HV], a Perl array [AV], or a Perl
  1015. code reference [PVCV].
  1016. <P></P>
  1017. <DT><STRONG><A NAME="item_Input_or_Output">Input or Output</A></STRONG><BR>
  1018. <DD>
  1019. Whether a parameter is for input data, output data, or both is usually
  1020. not reflected by the data type prefix.  In cases where this is not
  1021. obvious nor reflected in the parameter name proper, we may use the
  1022. following in front of the data type prefix.
  1023. <DL>
  1024. <DT><STRONG><A NAME="item_i">i</A></STRONG><BR>
  1025. <DD>
  1026. An input parameter given to the API [usually omitted].
  1027. <P></P>
  1028. <DT><STRONG><A NAME="item_o">o</A></STRONG><BR>
  1029. <DD>
  1030. An output-only parameter taken from the API.  You should not get a
  1031. warning if such a parameter is <A HREF="../../../lib/Pod/perlfunc.html#item_undef"><CODE>undef</CODE></A> when you pass it into the
  1032. function.  You should get an error if such a parameter is read-only.
  1033. You can [usually] pass in <CODE>[]</CODE> for such a parameter to have the
  1034. parameter silently ignored.
  1035. <P>These parameters are written to directly, like the buffer argument to
  1036. Perl's <A HREF="../../../lib/Pod/perlfunc.html#item_sysread"><CODE>sysread()</CODE></A>.  This method is often avoided because such calls
  1037. lack any visual cue that some parameters are being overwritten.   But
  1038. this method closely matches the C API which is what we are trying to
  1039. do.</P>
  1040. <P></P>
  1041. <DT><STRONG><A NAME="item_io">io</A></STRONG><BR>
  1042. <DD>
  1043. Input given to the API then overwritten with output taken from the
  1044. API.  You should get a warning [if <STRONG>-w</STRONG> is in effect] if such a
  1045. parameter is <A HREF="../../../lib/Pod/perlfunc.html#item_undef"><CODE>undef</CODE></A> when you pass it into the function.  If the
  1046. value is read-only, then [for most parameters] the output is silently
  1047. not written.  This is because it is often convenient to pass in read-only
  1048. constants for many such parameters.  You can also usually pass in
  1049. <CODE>[]</CODE> for such parameters.
  1050. <P></P></DL>
  1051. <DT><STRONG><A NAME="item_pp">pp</A></STRONG><BR>
  1052. <DD>
  1053. <DT><STRONG><A NAME="item_ppr">ppr</A></STRONG><BR>
  1054. <DD>
  1055. <DT><STRONG><A NAME="item_par">par</A></STRONG><BR>
  1056. <DD>
  1057. <DT><STRONG><A NAME="item_pap">pap</A></STRONG><BR>
  1058. <DD>
  1059. These are just unusual combinations of prefix characters described above.
  1060. <P>For each, a pointer is stored in a [4-byte] Perl string.  You can
  1061. usually use <CODE>unpack "P"</CODE> to access the real data from Perl.</P>
  1062. <P>For ``ppr'' [and often for ``pp''], the pointer points directly at a
  1063. C <CODE>struct</CODE>.  For ``par'', the pointer points to the first element
  1064. of a C [packed] array of <CODE>struct</CODE>s.  For ``pap'', the pointer points
  1065. to a C [packed] array of pointers to other things.</P>
  1066. <P></P>
  1067. <DT><STRONG><A NAME="item_ap">ap</A></STRONG><BR>
  1068. <DD>
  1069. Here we have a list of pointers packed into a single Perl string.
  1070. <P></P></DL>
  1071. <P>
  1072. <HR>
  1073. <H1><A NAME="bugs">BUGS</A></H1>
  1074. <P>The old ActiveState ports of Perl for Win32 [but not, ActivePerl, the
  1075. ActiveState distributions of standard Perl 5.004 and beyond] do not support
  1076. the tools for building extensions and so do not support this extension.</P>
  1077. <P>No routines are provided for using the data returned in the <CODE>FILETIME</CODE>
  1078. buffers.  Those will be in <CODE>Win32API::Time</CODE> when it becomes available.</P>
  1079. <P>No routines are provided for dealing with UNICODE data
  1080. effectively.  Such are available elsewhere.  See also
  1081. <EM>test.pl</EM> for some simple-minded UNICODE methods.</P>
  1082. <P>Parts of the module test will fail if used on a version of Perl
  1083. that does not yet set <CODE>$^E</CODE> based on <CODE>GetLastError()</CODE>.</P>
  1084. <P>On NT 4.0 (at least), the RegEnum* calls do not set the required
  1085. buffer sizes when returning <CODE>ERROR_MORE_DATA</CODE> so this module will
  1086. not grow the buffers in such cases.  <A HREF="#item_Win32%3A%3ATieRegistry"><CODE>Win32::TieRegistry</CODE></A> overcomes
  1087. this by using values from <A HREF="#item_RegQueryInfoKey"><CODE>RegQueryInfoKey()</CODE></A> for buffer sizes in
  1088. RegEnum* calls.</P>
  1089. <P>On NT 4.0 (at least), <A HREF="#item_RegQueryInfoKey"><CODE>RegQueryInfoKey()</CODE></A> on <CODE>HKEY_PERFORMANCE_DATA</CODE>
  1090. never succeeds.  Also, <A HREF="#item_RegQueryValueEx"><CODE>RegQueryValueEx()</CODE></A> on <CODE>HKEY_PERFORMANCE_DATA</CODE>
  1091. never returns the required buffer size.  To access <CODE>HKEY_PERFORMANCE_DATA</CODE>
  1092. you will need to keep growing the data buffer until the call succeeds.</P>
  1093. <P>Because <CODE>goto &subroutine</CODE> seems to be buggy under Win32 Perl,
  1094. it is not used in the stubs in <EM>Registry.pm</EM>.</P>
  1095. <P>
  1096. <HR>
  1097. <H1><A NAME="author">AUTHOR</A></H1>
  1098. <P>Tye McQueen, <A HREF="mailto:tye@metronet.com,">tye@metronet.com,</A> <A HREF="http://www.metronet.com/~tye/.">http://www.metronet.com/~tye/.</A></P>
  1099. <P>
  1100. <HR>
  1101. <H1><A NAME="see also">SEE ALSO</A></H1>
  1102. <DL>
  1103. <DT><STRONG><A NAME="item_Win32%3A%3ATieRegistry"><A HREF="../../../site/lib/Win32/TieRegistry.html">the Win32::TieRegistry manpage</A></A></STRONG><BR>
  1104. <DD>
  1105. <DT><STRONG><A NAME="item_Win32%3A%3ARegistry"><A HREF="../../../site/lib/Win32/Registry.html">the Win32::Registry manpage</A></A></STRONG><BR>
  1106. <DD>
  1107. </DL>
  1108. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  1109. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  1110. <STRONG><P CLASS=block> Win32API::Registry - Low-level access to Win32 system API calls from WINREG.H</P></STRONG>
  1111. </TD></TR>
  1112. </TABLE>
  1113.  
  1114. </BODY>
  1115.  
  1116. </HTML>
  1117.