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