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

  1.  
  2. <HTML>
  3. <HEAD>
  4. <TITLE>Win32 - Interfaces to some Win32 API Functions</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> Win32 - Interfaces to some Win32 API Functions</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="#description">DESCRIPTION</A></LI>
  24.     <UL>
  25.  
  26.         <LI><A HREF="#alphabetical listing of win32 functions">Alphabetical Listing of Win32 Functions</A></LI>
  27.     </UL>
  28.  
  29. </UL>
  30. <!-- INDEX END -->
  31.  
  32. <HR>
  33. <P>
  34. <H1><A NAME="name">NAME</A></H1>
  35. <P>Win32 - Interfaces to some Win32 API Functions</P>
  36. <P>
  37. <HR>
  38. <H1><A NAME="supportedplatforms">SUPPORTED PLATFORMS</A></H1>
  39. <UL>
  40. <LI>Linux</LI>
  41. <LI>Solaris</LI>
  42. <LI>Windows</LI>
  43. </UL>
  44. <HR>
  45. <H1><A NAME="description">DESCRIPTION</A></H1>
  46. <P>Perl on Win32 contains several functions to access Win32 APIs. Some
  47. are included in Perl itself (on Win32) and some are only available
  48. after explicitly requesting the Win32 module with:</P>
  49. <PRE>
  50.         use Win32;</PRE>
  51. <P>The builtin functions are marked as [CORE] and the other ones
  52. as [EXT] in the following alphabetical listing. The <CODE>Win32</CODE> module
  53. is not part of the Perl source distribution; it is distributed in
  54. the libwin32 bundle of Win32::* modules on CPAN. The module is
  55. already preinstalled in binary distributions like ActivePerl.</P>
  56. <P>
  57. <H2><A NAME="alphabetical listing of win32 functions">Alphabetical Listing of Win32 Functions</A></H2>
  58. <DL>
  59. <DT><STRONG><A NAME="item_AbortSystemShutdown">Win32::AbortSystemShutdown(MACHINE)</A></STRONG><BR>
  60. <DD>
  61. [EXT] Aborts a system shutdown (started by the
  62. InitiateSystemShutdown function) on the specified MACHINE.
  63. <P></P>
  64. <DT><STRONG><A NAME="item_BuildNumber">Win32::BuildNumber()</A></STRONG><BR>
  65. <DD>
  66. [CORE] Returns the ActivePerl build number. This function is
  67. only available in the ActivePerl binary distribution.
  68. <P></P>
  69. <DT><STRONG><A NAME="item_CopyFile">Win32::CopyFile(FROM, TO, OVERWRITE)</A></STRONG><BR>
  70. <DD>
  71. [CORE] The Win32::CopyFile() function copies an existing file to a new
  72. file. All file information like creation time and file attributes will
  73. be copied to the new file. However it will <STRONG>not</STRONG> copy the security
  74. information. If the destination file already exists it will only be
  75. overwritten when the OVERWRITE parameter is true. But even this will
  76. not overwrite a read-only file; you have to <A HREF="../../lib/Pod/perlfunc.html#item_unlink"><CODE>unlink()</CODE></A> it first
  77. yourself.
  78. <P></P>
  79. <DT><STRONG><A NAME="item_DomainName">Win32::DomainName()</A></STRONG><BR>
  80. <DD>
  81. [CORE] Returns the name of the Microsoft Network domain that the
  82. owner of the current perl process is logged into.
  83. <P></P>
  84. <DT><STRONG><A NAME="item_ExpandEnvironmentStrings">Win32::ExpandEnvironmentStrings(STRING)</A></STRONG><BR>
  85. <DD>
  86. [EXT] Takes STRING and replaces all referenced environment variable
  87. names with their defined values. References to environment variables
  88. take the form <CODE>%VariableName%</CODE>. Case is ignored when looking up the
  89. VariableName in the environment. If the variable is not found then the
  90. original <CODE>%VariableName%</CODE> text is retained.  Has the same effect
  91. as the following:
  92. <PRE>
  93.         $string =~ s/%([^%]*)%/$ENV{$1} || "%$1%"/eg</PRE>
  94. <P></P>
  95. <DT><STRONG><A NAME="item_FormatMessage">Win32::FormatMessage(ERRORCODE)</A></STRONG><BR>
  96. <DD>
  97. [CORE] Converts the supplied Win32 error number (e.g. returned by
  98. Win32::GetLastError()) to a descriptive string.  Analogous to the
  99. <CODE>perror()</CODE> standard-C library function.  Note that <CODE>$^E</CODE> used
  100. in a string context has much the same effect.
  101. <PRE>
  102.         C:\> perl -e "$^E = 26; print $^E;"
  103.         The specified disk or diskette cannot be accessed</PRE>
  104. <P></P>
  105. <DT><STRONG><A NAME="item_FsType">Win32::FsType()</A></STRONG><BR>
  106. <DD>
  107. [CORE] Returns the name of the filesystem of the currently active
  108. drive (like 'FAT' or 'NTFS'). In list context it returns three values:
  109. (FSTYPE, FLAGS, MAXCOMPLEN). FSTYPE is the filesystem type as
  110. before. FLAGS is a combination of values of the following table:
  111. <PRE>
  112.         0x00000001  supports case-sensitive filenames
  113.         0x00000002  preserves the case of filenames
  114.         0x00000004  supports Unicode in filenames
  115.         0x00000008  preserves and enforces ACLs
  116.         0x00000010  supports file-based compression
  117.         0x00000020  supports disk quotas
  118.         0x00000040  supports sparse files
  119.         0x00000080  supports reparse points
  120.         0x00000100  supports remote storage
  121.         0x00008000  is a compressed volume (e.g. DoubleSpace)
  122.         0x00010000  supports object identifiers
  123.         0x00020000  supports the Encrypted File System (EFS)</PRE>
  124. <P>MAXCOMPLEN is the maximum length of a filename component (the part
  125. between two backslashes) on this file system.</P>
  126. <P></P>
  127. <DT><STRONG><A NAME="item_FreeLibrary">Win32::FreeLibrary(HANDLE)</A></STRONG><BR>
  128. <DD>
  129. [EXT] Unloads a previously loaded dynamic-link library. The HANDLE is
  130. no longer valid after this call. See <A HREF="../../Win32/LoadLibrary(LIBNAME).html">LoadLibrary</A>
  131. for information on dynamically loading a library.
  132. <P></P>
  133. <DT><STRONG><A NAME="item_GetArchName">Win32::GetArchName()</A></STRONG><BR>
  134. <DD>
  135. [EXT] Use of this function is deprecated. It is equivalent with
  136. $ENV{PROCESSOR_ARCHITECTURE}. This might not work on Win9X.
  137. <P></P>
  138. <DT><STRONG><A NAME="item_GetChipName">Win32::GetChipName()</A></STRONG><BR>
  139. <DD>
  140. [EXT] Returns the processor type: 386, 486 or 586 for Intel processors,
  141. 21064 for the Alpha chip.
  142. <P></P>
  143. <DT><STRONG><A NAME="item_GetCwd">Win32::GetCwd()</A></STRONG><BR>
  144. <DD>
  145. [CORE] Returns the current active drive and directory. This function
  146. does not return a UNC path, since the functionality required for such
  147. a feature is not available under Windows 95.
  148. <P></P>
  149. <DT><STRONG><A NAME="item_GetFullPathName">Win32::GetFullPathName(FILENAME)</A></STRONG><BR>
  150. <DD>
  151. [CORE] GetFullPathName combines the FILENAME with the current drive
  152. and directory name and returns a fully qualified (aka, absolute)
  153. path name. In list context it returns two elements: (PATH, FILE) where
  154. PATH is the complete pathname component (including trailing backslash)
  155. and FILE is just the filename part.  Note that no attempt is made to
  156. convert 8.3 components in the supplied FILENAME to longnames or
  157. vice-versa.  Compare with Win32::GetShortPathName and
  158. Win32::GetLongPathName.
  159. <P>This function has been added for Perl 5.6.</P>
  160. <P></P>
  161. <DT><STRONG><A NAME="item_GetLastError">Win32::GetLastError()</A></STRONG><BR>
  162. <DD>
  163. [CORE] Returns the last error value generated by a call to a Win32 API
  164. function.  Note that <CODE>$^E</CODE> used in a numeric context amounts to the
  165. same value.
  166. <P></P>
  167. <DT><STRONG><A NAME="item_GetLongPathName">Win32::GetLongPathName(PATHNAME)</A></STRONG><BR>
  168. <DD>
  169. [CORE] Returns a representaion of PATHNAME composed of longname
  170. components (if any).  The result may not necessarily be longer
  171. than PATHNAME.  No attempt is made to convert PATHNAME to the
  172. absolute path.  Compare with Win32::GetShortPathName and
  173. Win32::GetFullPathName.
  174. <P>This function has been added for Perl 5.6.</P>
  175. <P></P>
  176. <DT><STRONG><A NAME="item_GetNextAvailDrive">Win32::GetNextAvailDrive()</A></STRONG><BR>
  177. <DD>
  178. [CORE] Returns a string in the form of ``<d>:'' where <d> is the first
  179. available drive letter.
  180. <P></P>
  181. <DT><STRONG><A NAME="item_GetOSVersion">Win32::GetOSVersion()</A></STRONG><BR>
  182. <DD>
  183. [CORE] Returns the array (STRING, MAJOR, MINOR, BUILD, ID), where
  184. the elements are, respectively: An arbitrary descriptive string, the
  185. major version number of the operating system, the minor version
  186. number, the build number, and a digit indicating the actual operating
  187. system. For ID, the values are 0 for Win32s, 1 for Windows 9X and 2
  188. for Windows NT. In scalar context it returns just the ID.
  189. <P></P>
  190. <DT><STRONG><A NAME="item_GetShortPathName">Win32::GetShortPathName(PATHNAME)</A></STRONG><BR>
  191. <DD>
  192. [CORE] Returns a representation of PATHNAME composed only of
  193. short (8.3) path components.  The result may not necessarily be
  194. shorter than PATHNAME.  Compare with Win32::GetFullPathName and
  195. Win32::GetLongPathName.
  196. <P></P>
  197. <DT><STRONG><A NAME="item_GetProcAddress">Win32::GetProcAddress(INSTANCE, PROCNAME)</A></STRONG><BR>
  198. <DD>
  199. [EXT] Returns the address of a function inside a loaded library. The
  200. information about what you can do with this address has been lost in
  201. the mist of time. Use the Win32::API module instead of this deprecated
  202. function.
  203. <P></P>
  204. <DT><STRONG><A NAME="item_GetTickCount">Win32::GetTickCount()</A></STRONG><BR>
  205. <DD>
  206. [CORE] Returns the number of milliseconds elapsed since the last
  207. system boot. Resolution is limited to system timer ticks (about 10ms
  208. on WinNT and 55ms on Win9X).
  209. <P></P>
  210. <DT><STRONG><A NAME="item_InitiateSystemShutdown">Win32::InitiateSystemShutdown(MACHINE, MESSAGE, TIMEOUT, FORCECLOSE, REBOOT)</A></STRONG><BR>
  211. <DD>
  212. [EXT] Shutsdown the specified MACHINE, notifying users with the
  213. supplied MESSAGE, within the specified TIMEOUT interval. Forces
  214. closing of all documents without prompting the user if FORCECLOSE is
  215. true, and reboots the machine if REBOOT is true. This function works
  216. only on WinNT.
  217. <P></P>
  218. <DT><STRONG><A NAME="item_IsWinNT">Win32::IsWinNT()</A></STRONG><BR>
  219. <DD>
  220. [CORE] Returns non zero if the Win32 subsystem is Windows NT.
  221. <P></P>
  222. <DT><STRONG><A NAME="item_IsWin95">Win32::IsWin95()</A></STRONG><BR>
  223. <DD>
  224. [CORE] Returns non zero if the Win32 subsystem is Windows 95.
  225. <P></P>
  226. <DT><STRONG><A NAME="item_LoadLibrary">Win32::LoadLibrary(LIBNAME)</A></STRONG><BR>
  227. <DD>
  228. [EXT] Loads a dynamic link library into memory and returns its module
  229. handle. This handle can be used with Win32::GetProcAddress and
  230. Win32::FreeLibrary. This function is deprecated. Use the Win32::API
  231. module instead.
  232. <P></P>
  233. <DT><STRONG><A NAME="item_LoginName">Win32::LoginName()</A></STRONG><BR>
  234. <DD>
  235. [CORE] Returns the username of the owner of the current perl process.
  236. <P></P>
  237. <DT><STRONG><A NAME="item_LookupAccountName">Win32::LookupAccountName(SYSTEM, ACCOUNT, DOMAIN, SID, SIDTYPE)</A></STRONG><BR>
  238. <DD>
  239. [EXT] Looks up ACCOUNT on SYSTEM and returns the domain name the SID and
  240. the SID type.
  241. <P></P>
  242. <DT><STRONG><A NAME="item_LookupAccountSID">Win32::LookupAccountSID(SYSTEM, SID, ACCOUNT, DOMAIN, SIDTYPE)</A></STRONG><BR>
  243. <DD>
  244. [EXT] Looks up SID on SYSTEM and returns the account name, domain name,
  245. and the SID type.
  246. <P></P>
  247. <DT><STRONG><A NAME="item_MsgBox">Win32::MsgBox(MESSAGE [, FLAGS [, TITLE]])</A></STRONG><BR>
  248. <DD>
  249. [EXT] Create a dialogbox containing MESSAGE. FLAGS specifies the
  250. required icon and buttons according to the following table:
  251. <PRE>
  252.         0 = OK
  253.         1 = OK and Cancel
  254.         2 = Abort, Retry, and Ignore
  255.         3 = Yes, No and Cancel
  256.         4 = Yes and No
  257.         5 = Retry and Cancel</PRE>
  258. <PRE>
  259.         MB_ICONSTOP          "X" in a red circle
  260.         MB_ICONQUESTION      question mark in a bubble
  261.         MB_ICONEXCLAMATION   exclamation mark in a yellow triangle
  262.         MB_ICONINFORMATION   "i" in a bubble</PRE>
  263. <P>TITLE specifies an optional window title. The default is ``Perl''.</P>
  264. <P>The function returns the menu id of the selected push button:</P>
  265. <PRE>
  266.         0  Error</PRE>
  267. <PRE>
  268.         1  OK
  269.         2  Cancel
  270.         3  Abort
  271.         4  Retry
  272.         5  Ignore
  273.         6  Yes
  274.         7  No</PRE>
  275. <P></P>
  276. <DT><STRONG><A NAME="item_NodeName">Win32::NodeName()</A></STRONG><BR>
  277. <DD>
  278. [CORE] Returns the Microsoft Network node-name of the current machine.
  279. <P></P>
  280. <DT><STRONG><A NAME="item_RegisterServer">Win32::RegisterServer(LIBRARYNAME)</A></STRONG><BR>
  281. <DD>
  282. [EXT] Loads the DLL LIBRARYNAME and calls the function DllRegisterServer.
  283. <P></P>
  284. <DT><STRONG><A NAME="item_SetCwd">Win32::SetCwd(NEWDIRECTORY)</A></STRONG><BR>
  285. <DD>
  286. [CORE] Sets the current active drive and directory. This function does not
  287. work with UNC paths, since the functionality required to required for
  288. such a feature is not available under Windows 95.
  289. <P></P>
  290. <DT><STRONG><A NAME="item_SetLastError">Win32::SetLastError(ERROR)</A></STRONG><BR>
  291. <DD>
  292. [CORE] Sets the value of the last error encountered to ERROR. This is
  293. that value that will be returned by the Win32::GetLastError()
  294. function. This functions has been added for Perl 5.6.
  295. <P></P>
  296. <DT><STRONG><A NAME="item_Sleep">Win32::Sleep(TIME)</A></STRONG><BR>
  297. <DD>
  298. [CORE] Pauses for TIME milliseconds. The timeslices are made available
  299. to other processes and threads.
  300. <P></P>
  301. <DT><STRONG><A NAME="item_Spawn">Win32::Spawn(COMMAND, ARGS, PID)</A></STRONG><BR>
  302. <DD>
  303. [CORE] Spawns a new process using the supplied COMMAND, passing in
  304. arguments in the string ARGS. The pid of the new process is stored in
  305. PID. This function is deprecated. Please use the Win32::Process module
  306. instead.
  307. <P></P>
  308. <DT><STRONG><A NAME="item_UnregisterServer">Win32::UnregisterServer(LIBRARYNAME)</A></STRONG><BR>
  309. <DD>
  310. [EXT] Loads the DLL LIBRARYNAME and calls the function
  311. DllUnregisterServer.
  312. <P></P></DL>
  313. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  314. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  315. <STRONG><P CLASS=block> Win32 - Interfaces to some Win32 API Functions</P></STRONG>
  316. </TD></TR>
  317. </TABLE>
  318.  
  319. </BODY>
  320.  
  321. </HTML>
  322.