Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

287 lines
9.6 KiB

  1. =head1 NAME
  2. Win32 - Interfaces to some Win32 API Functions
  3. =head1 DESCRIPTION
  4. Perl on Win32 contains several functions to access Win32 APIs. Some
  5. are included in Perl itself (on Win32) and some are only available
  6. after explicitly requesting the Win32 module with:
  7. use Win32;
  8. The builtin functions are marked as [CORE] and the other ones
  9. as [EXT] in the following alphabetical listing. The C<Win32> module
  10. is not part of the Perl source distribution; it is distributed in
  11. the libwin32 bundle of Win32::* modules on CPAN. The module is
  12. already preinstalled in binary distributions like ActivePerl.
  13. =head2 Alphabetical Listing of Win32 Functions
  14. =over
  15. =item Win32::AbortSystemShutdown(MACHINE)
  16. [EXT] Aborts a system shutdown (started by the
  17. InitiateSystemShutdown function) on the specified MACHINE.
  18. =item Win32::BuildNumber()
  19. [CORE] Returns the ActivePerl build number. This function is
  20. only available in the ActivePerl binary distribution.
  21. =item Win32::CopyFile(FROM, TO, OVERWRITE)
  22. [CORE] The Win32::CopyFile() function copies an existing file to a new
  23. file. All file information like creation time and file attributes will
  24. be copied to the new file. However it will B<not> copy the security
  25. information. If the destination file already exists it will only be
  26. overwritten when the OVERWRITE parameter is true. But even this will
  27. not overwrite a read-only file; you have to unlink() it first
  28. yourself.
  29. =item Win32::DomainName()
  30. [CORE] Returns the name of the Microsoft Network domain that the
  31. owner of the current perl process is logged into. This function does
  32. B<not> work on Windows 9x.
  33. =item Win32::ExpandEnvironmentStrings(STRING)
  34. [EXT] Takes STRING and replaces all referenced environment variable
  35. names with their defined values. References to environment variables
  36. take the form C<%VariableName%>. Case is ignored when looking up the
  37. VariableName in the environment. If the variable is not found then the
  38. original C<%VariableName%> text is retained. Has the same effect
  39. as the following:
  40. $string =~ s/%([^%]*)%/$ENV{$1} || "%$1%"/eg
  41. =item Win32::FormatMessage(ERRORCODE)
  42. [CORE] Converts the supplied Win32 error number (e.g. returned by
  43. Win32::GetLastError()) to a descriptive string. Analogous to the
  44. perror() standard-C library function. Note that C<$^E> used
  45. in a string context has much the same effect.
  46. C:\> perl -e "$^E = 26; print $^E;"
  47. The specified disk or diskette cannot be accessed
  48. =item Win32::FsType()
  49. [CORE] Returns the name of the filesystem of the currently active
  50. drive (like 'FAT' or 'NTFS'). In list context it returns three values:
  51. (FSTYPE, FLAGS, MAXCOMPLEN). FSTYPE is the filesystem type as
  52. before. FLAGS is a combination of values of the following table:
  53. 0x00000001 supports case-sensitive filenames
  54. 0x00000002 preserves the case of filenames
  55. 0x00000004 supports Unicode in filenames
  56. 0x00000008 preserves and enforces ACLs
  57. 0x00000010 supports file-based compression
  58. 0x00000020 supports disk quotas
  59. 0x00000040 supports sparse files
  60. 0x00000080 supports reparse points
  61. 0x00000100 supports remote storage
  62. 0x00008000 is a compressed volume (e.g. DoubleSpace)
  63. 0x00010000 supports object identifiers
  64. 0x00020000 supports the Encrypted File System (EFS)
  65. MAXCOMPLEN is the maximum length of a filename component (the part
  66. between two backslashes) on this file system.
  67. =item Win32::FreeLibrary(HANDLE)
  68. [EXT] Unloads a previously loaded dynamic-link library. The HANDLE is
  69. no longer valid after this call. See L<LoadLibrary|Win32::LoadLibrary(LIBNAME)>
  70. for information on dynamically loading a library.
  71. =item Win32::GetArchName()
  72. [EXT] Use of this function is deprecated. It is equivalent with
  73. $ENV{PROCESSOR_ARCHITECTURE}. This might not work on Win9X.
  74. =item Win32::GetChipName()
  75. [EXT] Returns the processor type: 386, 486 or 586 for Intel processors,
  76. 21064 for the Alpha chip.
  77. =item Win32::GetCwd()
  78. [CORE] Returns the current active drive and directory. This function
  79. does not return a UNC path, since the functionality required for such
  80. a feature is not available under Windows 95.
  81. =item Win32::GetFullPathName(FILENAME)
  82. [CORE] GetFullPathName combines the FILENAME with the current drive
  83. and directory name and returns a fully qualified (aka, absolute)
  84. path name. In list context it returns two elements: (PATH, FILE) where
  85. PATH is the complete pathname component (including trailing backslash)
  86. and FILE is just the filename part. Note that no attempt is made to
  87. convert 8.3 components in the supplied FILENAME to longnames or
  88. vice-versa. Compare with Win32::GetShortPathName and
  89. Win32::GetLongPathName.
  90. This function has been added for Perl 5.6.
  91. =item Win32::GetLastError()
  92. [CORE] Returns the last error value generated by a call to a Win32 API
  93. function. Note that C<$^E> used in a numeric context amounts to the
  94. same value.
  95. =item Win32::GetLongPathName(PATHNAME)
  96. [CORE] Returns a representation of PATHNAME composed of longname
  97. components (if any). The result may not necessarily be longer
  98. than PATHNAME. No attempt is made to convert PATHNAME to the
  99. absolute path. Compare with Win32::GetShortPathName and
  100. Win32::GetFullPathName.
  101. This function has been added for Perl 5.6.
  102. =item Win32::GetNextAvailDrive()
  103. [CORE] Returns a string in the form of "<d>:" where <d> is the first
  104. available drive letter.
  105. =item Win32::GetOSVersion()
  106. [CORE] Returns the array (STRING, MAJOR, MINOR, BUILD, ID), where
  107. the elements are, respectively: An arbitrary descriptive string, the
  108. major version number of the operating system, the minor version
  109. number, the build number, and a digit indicating the actual operating
  110. system. For ID, the values are 0 for Win32s, 1 for Windows 9X and 2
  111. for Windows NT. In scalar context it returns just the ID.
  112. =item Win32::GetShortPathName(PATHNAME)
  113. [CORE] Returns a representation of PATHNAME composed only of
  114. short (8.3) path components. The result may not necessarily be
  115. shorter than PATHNAME. Compare with Win32::GetFullPathName and
  116. Win32::GetLongPathName.
  117. =item Win32::GetProcAddress(INSTANCE, PROCNAME)
  118. [EXT] Returns the address of a function inside a loaded library. The
  119. information about what you can do with this address has been lost in
  120. the mist of time. Use the Win32::API module instead of this deprecated
  121. function.
  122. =item Win32::GetTickCount()
  123. [CORE] Returns the number of milliseconds elapsed since the last
  124. system boot. Resolution is limited to system timer ticks (about 10ms
  125. on WinNT and 55ms on Win9X).
  126. =item Win32::InitiateSystemShutdown
  127. (MACHINE, MESSAGE, TIMEOUT, FORCECLOSE, REBOOT)
  128. [EXT] Shutsdown the specified MACHINE, notifying users with the
  129. supplied MESSAGE, within the specified TIMEOUT interval. Forces
  130. closing of all documents without prompting the user if FORCECLOSE is
  131. true, and reboots the machine if REBOOT is true. This function works
  132. only on WinNT.
  133. =item Win32::IsWinNT()
  134. [CORE] Returns non zero if the Win32 subsystem is Windows NT.
  135. =item Win32::IsWin95()
  136. [CORE] Returns non zero if the Win32 subsystem is Windows 95.
  137. =item Win32::LoadLibrary(LIBNAME)
  138. [EXT] Loads a dynamic link library into memory and returns its module
  139. handle. This handle can be used with Win32::GetProcAddress and
  140. Win32::FreeLibrary. This function is deprecated. Use the Win32::API
  141. module instead.
  142. =item Win32::LoginName()
  143. [CORE] Returns the username of the owner of the current perl process.
  144. =item Win32::LookupAccountName(SYSTEM, ACCOUNT, DOMAIN, SID, SIDTYPE)
  145. [EXT] Looks up ACCOUNT on SYSTEM and returns the domain name the SID and
  146. the SID type.
  147. =item Win32::LookupAccountSID(SYSTEM, SID, ACCOUNT, DOMAIN, SIDTYPE)
  148. [EXT] Looks up SID on SYSTEM and returns the account name, domain name,
  149. and the SID type.
  150. =item Win32::MsgBox(MESSAGE [, FLAGS [, TITLE]])
  151. [EXT] Create a dialogbox containing MESSAGE. FLAGS specifies the
  152. required icon and buttons according to the following table:
  153. 0 = OK
  154. 1 = OK and Cancel
  155. 2 = Abort, Retry, and Ignore
  156. 3 = Yes, No and Cancel
  157. 4 = Yes and No
  158. 5 = Retry and Cancel
  159. MB_ICONSTOP "X" in a red circle
  160. MB_ICONQUESTION question mark in a bubble
  161. MB_ICONEXCLAMATION exclamation mark in a yellow triangle
  162. MB_ICONINFORMATION "i" in a bubble
  163. TITLE specifies an optional window title. The default is "Perl".
  164. The function returns the menu id of the selected push button:
  165. 0 Error
  166. 1 OK
  167. 2 Cancel
  168. 3 Abort
  169. 4 Retry
  170. 5 Ignore
  171. 6 Yes
  172. 7 No
  173. =item Win32::NodeName()
  174. [CORE] Returns the Microsoft Network node-name of the current machine.
  175. =item Win32::RegisterServer(LIBRARYNAME)
  176. [EXT] Loads the DLL LIBRARYNAME and calls the function DllRegisterServer.
  177. =item Win32::SetCwd(NEWDIRECTORY)
  178. [CORE] Sets the current active drive and directory. This function does not
  179. work with UNC paths, since the functionality required to required for
  180. such a feature is not available under Windows 95.
  181. =item Win32::SetLastError(ERROR)
  182. [CORE] Sets the value of the last error encountered to ERROR. This is
  183. that value that will be returned by the Win32::GetLastError()
  184. function. This functions has been added for Perl 5.6.
  185. =item Win32::Sleep(TIME)
  186. [CORE] Pauses for TIME milliseconds. The timeslices are made available
  187. to other processes and threads.
  188. =item Win32::Spawn(COMMAND, ARGS, PID)
  189. [CORE] Spawns a new process using the supplied COMMAND, passing in
  190. arguments in the string ARGS. The pid of the new process is stored in
  191. PID. This function is deprecated. Please use the Win32::Process module
  192. instead.
  193. =item Win32::UnregisterServer(LIBRARYNAME)
  194. [EXT] Loads the DLL LIBRARYNAME and calls the function
  195. DllUnregisterServer.
  196. =back
  197. =cut