Re: The Strict trap
[p5sagit/p5-mst-13.2.git] / ext / Win32 / Win32.pm
CommitLineData
b4ad57f4 1package Win32;
2
3BEGIN {
4 use strict;
5 use vars qw|$VERSION @ISA @EXPORT @EXPORT_OK|;
6
7 require Exporter;
8 require DynaLoader;
9
10 @ISA = qw|Exporter DynaLoader|;
85472d4f 11 $VERSION = '0.27';
b4ad57f4 12
13 @EXPORT = qw(
14 NULL
15 WIN31_CLASS
16 OWNER_SECURITY_INFORMATION
17 GROUP_SECURITY_INFORMATION
18 DACL_SECURITY_INFORMATION
19 SACL_SECURITY_INFORMATION
20 MB_ICONHAND
21 MB_ICONQUESTION
22 MB_ICONEXCLAMATION
23 MB_ICONASTERISK
24 MB_ICONWARNING
25 MB_ICONERROR
26 MB_ICONINFORMATION
27 MB_ICONSTOP
28 );
29 @EXPORT_OK = qw(
30 GetOSName
31 SW_HIDE
32 SW_SHOWNORMAL
33 SW_SHOWMINIMIZED
34 SW_SHOWMAXIMIZED
35 SW_SHOWNOACTIVATE
36
37 CSIDL_DESKTOP
38 CSIDL_PROGRAMS
39 CSIDL_PERSONAL
40 CSIDL_FAVORITES
41 CSIDL_STARTUP
42 CSIDL_RECENT
43 CSIDL_SENDTO
44 CSIDL_STARTMENU
45 CSIDL_MYMUSIC
46 CSIDL_MYVIDEO
47 CSIDL_DESKTOPDIRECTORY
48 CSIDL_NETHOOD
49 CSIDL_FONTS
50 CSIDL_TEMPLATES
51 CSIDL_COMMON_STARTMENU
52 CSIDL_COMMON_PROGRAMS
53 CSIDL_COMMON_STARTUP
54 CSIDL_COMMON_DESKTOPDIRECTORY
55 CSIDL_APPDATA
56 CSIDL_PRINTHOOD
57 CSIDL_LOCAL_APPDATA
58 CSIDL_COMMON_FAVORITES
59 CSIDL_INTERNET_CACHE
60 CSIDL_COOKIES
61 CSIDL_HISTORY
62 CSIDL_COMMON_APPDATA
63 CSIDL_WINDOWS
64 CSIDL_SYSTEM
65 CSIDL_PROGRAM_FILES
66 CSIDL_MYPICTURES
67 CSIDL_PROFILE
68 CSIDL_PROGRAM_FILES_COMMON
69 CSIDL_COMMON_TEMPLATES
70 CSIDL_COMMON_DOCUMENTS
71 CSIDL_COMMON_ADMINTOOLS
72 CSIDL_ADMINTOOLS
73 CSIDL_COMMON_MUSIC
74 CSIDL_COMMON_PICTURES
75 CSIDL_COMMON_VIDEO
76 CSIDL_RESOURCES
77 CSIDL_RESOURCES_LOCALIZED
78 CSIDL_CDBURN_AREA
79 );
80}
81
82# Routines available in core:
83# Win32::GetLastError
84# Win32::LoginName
85# Win32::NodeName
86# Win32::DomainName
87# Win32::FsType
88# Win32::GetCwd
89# Win32::GetOSVersion
90# Win32::FormatMessage ERRORCODE
91# Win32::Spawn COMMAND, ARGS, PID
92# Win32::GetTickCount
93# Win32::IsWinNT
94# Win32::IsWin95
95
96# We won't bother with the constant stuff, too much of a hassle. Just hard
97# code it here.
98
99sub NULL { 0 }
100sub WIN31_CLASS { &NULL }
101
102sub OWNER_SECURITY_INFORMATION { 0x00000001 }
103sub GROUP_SECURITY_INFORMATION { 0x00000002 }
104sub DACL_SECURITY_INFORMATION { 0x00000004 }
105sub SACL_SECURITY_INFORMATION { 0x00000008 }
106
107sub MB_ICONHAND { 0x00000010 }
108sub MB_ICONQUESTION { 0x00000020 }
109sub MB_ICONEXCLAMATION { 0x00000030 }
110sub MB_ICONASTERISK { 0x00000040 }
111sub MB_ICONWARNING { 0x00000030 }
112sub MB_ICONERROR { 0x00000010 }
113sub MB_ICONINFORMATION { 0x00000040 }
114sub MB_ICONSTOP { 0x00000010 }
115
116#
117# Newly added constants. These have an empty prototype, unlike the
118# the ones above, which aren't prototyped for compatibility reasons.
119#
120sub SW_HIDE () { 0 }
121sub SW_SHOWNORMAL () { 1 }
122sub SW_SHOWMINIMIZED () { 2 }
123sub SW_SHOWMAXIMIZED () { 3 }
124sub SW_SHOWNOACTIVATE () { 4 }
125
126sub CSIDL_DESKTOP () { 0x0000 } # <desktop>
127sub CSIDL_PROGRAMS () { 0x0002 } # Start Menu\Programs
128sub CSIDL_PERSONAL () { 0x0005 } # "My Documents" folder
129sub CSIDL_FAVORITES () { 0x0006 } # <user name>\Favorites
130sub CSIDL_STARTUP () { 0x0007 } # Start Menu\Programs\Startup
131sub CSIDL_RECENT () { 0x0008 } # <user name>\Recent
132sub CSIDL_SENDTO () { 0x0009 } # <user name>\SendTo
133sub CSIDL_STARTMENU () { 0x000B } # <user name>\Start Menu
134sub CSIDL_MYMUSIC () { 0x000D } # "My Music" folder
135sub CSIDL_MYVIDEO () { 0x000E } # "My Videos" folder
136sub CSIDL_DESKTOPDIRECTORY () { 0x0010 } # <user name>\Desktop
137sub CSIDL_NETHOOD () { 0x0013 } # <user name>\nethood
138sub CSIDL_FONTS () { 0x0014 } # windows\fonts
139sub CSIDL_TEMPLATES () { 0x0015 }
140sub CSIDL_COMMON_STARTMENU () { 0x0016 } # All Users\Start Menu
141sub CSIDL_COMMON_PROGRAMS () { 0x0017 } # All Users\Start Menu\Programs
142sub CSIDL_COMMON_STARTUP () { 0x0018 } # All Users\Startup
143sub CSIDL_COMMON_DESKTOPDIRECTORY () { 0x0019 } # All Users\Desktop
144sub CSIDL_APPDATA () { 0x001A } # Application Data, new for NT4
145sub CSIDL_PRINTHOOD () { 0x001B } # <user name>\PrintHood
146sub CSIDL_LOCAL_APPDATA () { 0x001C } # non roaming, user\Local Settings\Application Data
147sub CSIDL_COMMON_FAVORITES () { 0x001F }
148sub CSIDL_INTERNET_CACHE () { 0x0020 }
149sub CSIDL_COOKIES () { 0x0021 }
150sub CSIDL_HISTORY () { 0x0022 }
151sub CSIDL_COMMON_APPDATA () { 0x0023 } # All Users\Application Data
152sub CSIDL_WINDOWS () { 0x0024 } # GetWindowsDirectory()
153sub CSIDL_SYSTEM () { 0x0025 } # GetSystemDirectory()
154sub CSIDL_PROGRAM_FILES () { 0x0026 } # C:\Program Files
155sub CSIDL_MYPICTURES () { 0x0027 } # "My Pictures", new for Win2K
156sub CSIDL_PROFILE () { 0x0028 } # USERPROFILE
157sub CSIDL_PROGRAM_FILES_COMMON () { 0x002B } # C:\Program Files\Common
158sub CSIDL_COMMON_TEMPLATES () { 0x002D } # All Users\Templates
159sub CSIDL_COMMON_DOCUMENTS () { 0x002E } # All Users\Documents
160sub CSIDL_COMMON_ADMINTOOLS () { 0x002F } # All Users\Start Menu\Programs\Administrative Tools
161sub CSIDL_ADMINTOOLS () { 0x0030 } # <user name>\Start Menu\Programs\Administrative Tools
162sub CSIDL_COMMON_MUSIC () { 0x0035 } # All Users\My Music
163sub CSIDL_COMMON_PICTURES () { 0x0036 } # All Users\My Pictures
164sub CSIDL_COMMON_VIDEO () { 0x0037 } # All Users\My Video
165sub CSIDL_RESOURCES () { 0x0038 } # %windir%\Resources\, For theme and other windows resources.
166sub CSIDL_RESOURCES_LOCALIZED () { 0x0039 } # %windir%\Resources\<LangID>, for theme and other windows specific resources.
167sub CSIDL_CDBURN_AREA () { 0x003B } # <user name>\Local Settings\Application Data\Microsoft\CD Burning
168
169### This method is just a simple interface into GetOSVersion(). More
170### specific or demanding situations should use that instead.
171
172my ($found_os, $found_desc);
173
174sub GetOSName {
175 my ($os,$desc,$major, $minor, $build, $id)=("","");
176 unless (defined $found_os) {
177 # If we have a run this already, we have the results cached
178 # If so, return them
179
180 # Use the standard API call to determine the version
181 ($desc, $major, $minor, $build, $id) = Win32::GetOSVersion();
182
183 # If id==0 then its a win32s box -- Meaning Win3.11
184 unless($id) {
185 $os = 'Win32s';
186 }
187 else {
188 # Magic numbers from MSDN documentation of OSVERSIONINFO
189 # Most version names can be parsed from just the id and minor
190 # version
191 $os = {
192 1 => {
193 0 => "95",
194 10 => "98",
195 90 => "Me"
196 },
197 2 => {
b76aa5af 198 0 => "NT4",
b4ad57f4 199 1 => "XP/.Net",
b76aa5af 200 2 => "2003",
b4ad57f4 201 51 => "NT3.51"
202 }
203 }->{$id}->{$minor};
204 }
205
206 # This _really_ shouldnt happen. At least not for quite a while
207 # Politely warn and return undef
208 unless (defined $os) {
209 warn qq[Windows version [$id:$major:$minor] unknown!];
210 return undef;
211 }
212
213 my $tag = "";
214
b76aa5af 215 # But distinguising W2k and Vista from NT4 requires looking at the major version
216 if ($os eq "NT4") {
217 $os = {5 => "2000", 6 => "Vista"}->{$major} || "NT4";
b4ad57f4 218 }
219
220 # For the rest we take a look at the build numbers and try to deduce
221 # the exact release name, but we put that in the $desc
222 elsif ($os eq "95") {
223 if ($build eq '67109814') {
224 $tag = '(a)';
225 }
226 elsif ($build eq '67306684') {
227 $tag = '(b1)';
228 }
229 elsif ($build eq '67109975') {
230 $tag = '(b2)';
231 }
232 }
233 elsif ($os eq "98" && $build eq '67766446') {
234 $tag = '(2nd ed)';
235 }
236
237 if (length $tag) {
238 if (length $desc) {
239 $desc = "$tag $desc";
240 }
241 else {
242 $desc = $tag;
243 }
244 }
245
246 # cache the results, so we dont have to do this again
247 $found_os = "Win$os";
248 $found_desc = $desc;
249 }
250
251 return wantarray ? ($found_os, $found_desc) : $found_os;
252}
253
254bootstrap Win32;
255
2561;
257
258__END__
259
260=head1 NAME
261
262Win32 - Interfaces to some Win32 API Functions
263
264=head1 DESCRIPTION
265
82adc83d 266The Win32 module contains functions to access Win32 APIs.
b4ad57f4 267
268=head2 Alphabetical Listing of Win32 Functions
269
82adc83d 270It is recommended to C<use Win32;> before any of these functions;
271however, for backwards compatibility, those marked as [CORE] will
272automatically do this for you.
273
b4ad57f4 274=over
275
276=item Win32::AbortSystemShutdown(MACHINE)
277
82adc83d 278Aborts a system shutdown (started by the
b4ad57f4 279InitiateSystemShutdown function) on the specified MACHINE.
280
281=item Win32::BuildNumber()
282
283[CORE] Returns the ActivePerl build number. This function is
284only available in the ActivePerl binary distribution.
285
286=item Win32::CopyFile(FROM, TO, OVERWRITE)
287
288[CORE] The Win32::CopyFile() function copies an existing file to a new
289file. All file information like creation time and file attributes will
290be copied to the new file. However it will B<not> copy the security
291information. If the destination file already exists it will only be
292overwritten when the OVERWRITE parameter is true. But even this will
293not overwrite a read-only file; you have to unlink() it first
294yourself.
295
296=item Win32::DomainName()
297
298[CORE] Returns the name of the Microsoft Network domain that the
299owner of the current perl process is logged into. This function does
300B<not> work on Windows 9x.
301
302=item Win32::ExpandEnvironmentStrings(STRING)
303
82adc83d 304Takes STRING and replaces all referenced environment variable
b4ad57f4 305names with their defined values. References to environment variables
306take the form C<%VariableName%>. Case is ignored when looking up the
307VariableName in the environment. If the variable is not found then the
308original C<%VariableName%> text is retained. Has the same effect
309as the following:
310
311 $string =~ s/%([^%]*)%/$ENV{$1} || "%$1%"/eg
312
313=item Win32::FormatMessage(ERRORCODE)
314
315[CORE] Converts the supplied Win32 error number (e.g. returned by
316Win32::GetLastError()) to a descriptive string. Analogous to the
317perror() standard-C library function. Note that C<$^E> used
318in a string context has much the same effect.
319
320 C:\> perl -e "$^E = 26; print $^E;"
321 The specified disk or diskette cannot be accessed
322
323=item Win32::FsType()
324
325[CORE] Returns the name of the filesystem of the currently active
326drive (like 'FAT' or 'NTFS'). In list context it returns three values:
327(FSTYPE, FLAGS, MAXCOMPLEN). FSTYPE is the filesystem type as
328before. FLAGS is a combination of values of the following table:
329
330 0x00000001 supports case-sensitive filenames
331 0x00000002 preserves the case of filenames
332 0x00000004 supports Unicode in filenames
333 0x00000008 preserves and enforces ACLs
334 0x00000010 supports file-based compression
335 0x00000020 supports disk quotas
336 0x00000040 supports sparse files
337 0x00000080 supports reparse points
338 0x00000100 supports remote storage
339 0x00008000 is a compressed volume (e.g. DoubleSpace)
340 0x00010000 supports object identifiers
341 0x00020000 supports the Encrypted File System (EFS)
342
343MAXCOMPLEN is the maximum length of a filename component (the part
344between two backslashes) on this file system.
345
346=item Win32::FreeLibrary(HANDLE)
347
82adc83d 348Unloads a previously loaded dynamic-link library. The HANDLE is
b4ad57f4 349no longer valid after this call. See L<LoadLibrary|Win32::LoadLibrary(LIBNAME)>
350for information on dynamically loading a library.
351
352=item Win32::GetArchName()
353
82adc83d 354Use of this function is deprecated. It is equivalent with
b4ad57f4 355$ENV{PROCESSOR_ARCHITECTURE}. This might not work on Win9X.
356
357=item Win32::GetChipName()
358
82adc83d 359Returns the processor type: 386, 486 or 586 for Intel processors,
b4ad57f4 36021064 for the Alpha chip.
361
362=item Win32::GetCwd()
363
364[CORE] Returns the current active drive and directory. This function
365does not return a UNC path, since the functionality required for such
366a feature is not available under Windows 95.
367
e364e11c 368=item Win32::GetFileVersion(FILENAME)
369
82adc83d 370Returns the file version number from the VERSIONINFO resource of
e364e11c 371the executable file or DLL. This is a tuple of four 16 bit numbers.
372In list context these four numbers will be returned. In scalar context
373they are concatenated into a string, separated by dots.
374
b4ad57f4 375=item Win32::GetFolderPath(FOLDER [, CREATE])
376
82adc83d 377Returns the full pathname of one of the Windows special folders.
b4ad57f4 378The folder will be created if it doesn't exist and the optional CREATE
379argument is true. The following FOLDER constants are defined by the
380Win32 module, but only exported on demand:
381
382 CSIDL_ADMINTOOLS
383 CSIDL_APPDATA
384 CSIDL_CDBURN_AREA
385 CSIDL_COMMON_ADMINTOOLS
386 CSIDL_COMMON_APPDATA
387 CSIDL_COMMON_DESKTOPDIRECTORY
388 CSIDL_COMMON_DOCUMENTS
389 CSIDL_COMMON_FAVORITES
390 CSIDL_COMMON_MUSIC
391 CSIDL_COMMON_PICTURES
392 CSIDL_COMMON_PROGRAMS
393 CSIDL_COMMON_STARTMENU
394 CSIDL_COMMON_STARTUP
395 CSIDL_COMMON_TEMPLATES
396 CSIDL_COMMON_VIDEO
397 CSIDL_COOKIES
398 CSIDL_DESKTOP
399 CSIDL_DESKTOPDIRECTORY
400 CSIDL_FAVORITES
401 CSIDL_FONTS
402 CSIDL_HISTORY
403 CSIDL_INTERNET_CACHE
404 CSIDL_LOCAL_APPDATA
405 CSIDL_MYMUSIC
406 CSIDL_MYPICTURES
407 CSIDL_MYVIDEO
408 CSIDL_NETHOOD
409 CSIDL_PERSONAL
410 CSIDL_PRINTHOOD
411 CSIDL_PROFILE
412 CSIDL_PROGRAMS
413 CSIDL_PROGRAM_FILES
414 CSIDL_PROGRAM_FILES_COMMON
415 CSIDL_RECENT
416 CSIDL_RESOURCES
417 CSIDL_RESOURCES_LOCALIZED
418 CSIDL_SENDTO
419 CSIDL_STARTMENU
420 CSIDL_STARTUP
421 CSIDL_SYSTEM
422 CSIDL_TEMPLATES
423 CSIDL_WINDOWS
424
425Note that not all folders are defined on all versions of Windows.
426
427Please refer to the MSDN documentation of the CSIDL constants,
428currently available at:
429
430http://msdn.microsoft.com/library/default.asp?url=/library/en-us/shellcc/platform/shell/reference/enums/csidl.asp
431
432=item Win32::GetFullPathName(FILENAME)
433
434[CORE] GetFullPathName combines the FILENAME with the current drive
435and directory name and returns a fully qualified (aka, absolute)
436path name. In list context it returns two elements: (PATH, FILE) where
437PATH is the complete pathname component (including trailing backslash)
438and FILE is just the filename part. Note that no attempt is made to
439convert 8.3 components in the supplied FILENAME to longnames or
440vice-versa. Compare with Win32::GetShortPathName and
441Win32::GetLongPathName.
442
443=item Win32::GetLastError()
444
445[CORE] Returns the last error value generated by a call to a Win32 API
446function. Note that C<$^E> used in a numeric context amounts to the
447same value.
448
449=item Win32::GetLongPathName(PATHNAME)
450
451[CORE] Returns a representation of PATHNAME composed of longname
452components (if any). The result may not necessarily be longer
453than PATHNAME. No attempt is made to convert PATHNAME to the
454absolute path. Compare with Win32::GetShortPathName and
455Win32::GetFullPathName.
456
457=item Win32::GetNextAvailDrive()
458
459[CORE] Returns a string in the form of "<d>:" where <d> is the first
460available drive letter.
461
462=item Win32::GetOSVersion()
463
464[CORE] Returns the list (STRING, MAJOR, MINOR, BUILD, ID), where the
465elements are, respectively: An arbitrary descriptive string, the major
466version number of the operating system, the minor version number, the
467build number, and a digit indicating the actual operating system.
468For the ID, the values are 0 for Win32s, 1 for Windows 9X/Me and 2 for
469Windows NT/2000/XP/2003. In scalar context it returns just the ID.
470
471Currently known values for ID MAJOR and MINOR are as follows:
472
473 OS ID MAJOR MINOR
474 Win32s 0 - -
475 Windows 95 1 4 0
476 Windows 98 1 4 10
477 Windows Me 1 4 90
478 Windows NT 3.51 2 3 51
479 Windows NT 4 2 4 0
480 Windows 2000 2 5 0
481 Windows XP 2 5 1
482 Windows Server 2003 2 5 2
b76aa5af 483 Windows Vista 2 6 0
b4ad57f4 484
485On Windows NT 4 SP6 and later this function returns the following
486additional values: SPMAJOR, SPMINOR, SUITEMASK, PRODUCTTYPE.
487
488SPMAJOR and SPMINOR are are the version numbers of the latest
489installed service pack.
490
491SUITEMASK is a bitfield identifying the product suites available on
492the system. Known bits are:
493
494 VER_SUITE_SMALLBUSINESS 0x00000001
495 VER_SUITE_ENTERPRISE 0x00000002
496 VER_SUITE_BACKOFFICE 0x00000004
497 VER_SUITE_COMMUNICATIONS 0x00000008
498 VER_SUITE_TERMINAL 0x00000010
499 VER_SUITE_SMALLBUSINESS_RESTRICTED 0x00000020
500 VER_SUITE_EMBEDDEDNT 0x00000040
501 VER_SUITE_DATACENTER 0x00000080
502 VER_SUITE_SINGLEUSERTS 0x00000100
503 VER_SUITE_PERSONAL 0x00000200
504 VER_SUITE_BLADE 0x00000400
505 VER_SUITE_EMBEDDED_RESTRICTED 0x00000800
506 VER_SUITE_SECURITY_APPLIANCE 0x00001000
507
508The VER_SUITE_xxx names are listed here to crossreference the Microsoft
509documentation. The Win32 module does not provide symbolic names for these
510constants.
511
512PRODUCTTYPE provides additional information about the system. It should
513be one of the following integer values:
514
515 1 - Workstation (NT 4, 2000 Pro, XP Home, XP Pro)
516 2 - Domaincontroller
517 3 - Server
518
519=item Win32::GetOSName()
520
82adc83d 521In scalar context returns the name of the Win32 operating system
b4ad57f4 522being used. In list context returns a two element list of the OS name
523and whatever edition information is known about the particular build
524(for Win9X boxes) and whatever service packs have been installed.
525The latter is roughly equivalent to the first item returned by
526GetOSVersion() in list context.
527
528Currently the possible values for the OS name are
529
530 Win32s Win95 Win98 WinMe WinNT3.51 WinNT4 Win2000 WinXP/.Net Win2003
531
532This routine is just a simple interface into GetOSVersion(). More
533specific or demanding situations should use that instead. Another
534option would be to use POSIX::uname(), however the latter appears to
535report only the OS family name and not the specific OS. In scalar
536context it returns just the ID.
537
538The name "WinXP/.Net" is used for historical reasons only, to maintain
539backwards compatibility of the Win32 module. Windows .NET Server has
540been renamed as Windows 2003 Server before final release and uses a
541different major/minor version number than Windows XP.
542
543=item Win32::GetShortPathName(PATHNAME)
544
eb6bfc3a 545[CORE] Returns a representation of PATHNAME that is composed of short
546(8.3) path components where available. For path components where the
547file system has not generated the short form the returned path will
548use the long form, so this function might still for instance return a
549path containing spaces. Compare with Win32::GetFullPathName and
b4ad57f4 550Win32::GetLongPathName.
551
552=item Win32::GetProcAddress(INSTANCE, PROCNAME)
553
82adc83d 554Returns the address of a function inside a loaded library. The
b4ad57f4 555information about what you can do with this address has been lost in
556the mist of time. Use the Win32::API module instead of this deprecated
557function.
558
559=item Win32::GetTickCount()
560
561[CORE] Returns the number of milliseconds elapsed since the last
562system boot. Resolution is limited to system timer ticks (about 10ms
563on WinNT and 55ms on Win9X).
564
e364e11c 565=item Win32::GuidGen()
566
82adc83d 567Creates a globally unique 128 bit integer that can be used as a
e364e11c 568persistent identifier in a distributed setting. To a very high degree
569of certainty this function returns a unique value. No other
570invocation, on the same or any other system (networked or not), should
571return the same value.
572
573The return value is formatted according to OLE conventions, as groups
574of hex digits with surrounding braces. For example:
575
576 {09531CF1-D0C7-4860-840C-1C8C8735E2AD}
577
b4ad57f4 578=item Win32::InitiateSystemShutdown
579
580(MACHINE, MESSAGE, TIMEOUT, FORCECLOSE, REBOOT)
581
82adc83d 582Shutsdown the specified MACHINE, notifying users with the
b4ad57f4 583supplied MESSAGE, within the specified TIMEOUT interval. Forces
584closing of all documents without prompting the user if FORCECLOSE is
585true, and reboots the machine if REBOOT is true. This function works
586only on WinNT.
587
588=item Win32::IsAdminUser()
589
82adc83d 590Returns non zero if the account in whose security context the
b4ad57f4 591current process/thread is running belongs to the local group of
592Administrators in the built-in system domain; returns 0 if not.
593Returns the undefined value and prints a warning if an error occurred.
594This function always returns 1 on Win9X.
595
596=item Win32::IsWinNT()
597
598[CORE] Returns non zero if the Win32 subsystem is Windows NT.
599
600=item Win32::IsWin95()
601
602[CORE] Returns non zero if the Win32 subsystem is Windows 95.
603
604=item Win32::LoadLibrary(LIBNAME)
605
82adc83d 606Loads a dynamic link library into memory and returns its module
b4ad57f4 607handle. This handle can be used with Win32::GetProcAddress and
608Win32::FreeLibrary. This function is deprecated. Use the Win32::API
609module instead.
610
611=item Win32::LoginName()
612
613[CORE] Returns the username of the owner of the current perl process.
614
615=item Win32::LookupAccountName(SYSTEM, ACCOUNT, DOMAIN, SID, SIDTYPE)
616
82adc83d 617Looks up ACCOUNT on SYSTEM and returns the domain name the SID and
b4ad57f4 618the SID type.
619
620=item Win32::LookupAccountSID(SYSTEM, SID, ACCOUNT, DOMAIN, SIDTYPE)
621
82adc83d 622Looks up SID on SYSTEM and returns the account name, domain name,
b4ad57f4 623and the SID type.
624
625=item Win32::MsgBox(MESSAGE [, FLAGS [, TITLE]])
626
82adc83d 627Create a dialogbox containing MESSAGE. FLAGS specifies the
b4ad57f4 628required icon and buttons according to the following table:
629
630 0 = OK
631 1 = OK and Cancel
632 2 = Abort, Retry, and Ignore
633 3 = Yes, No and Cancel
634 4 = Yes and No
635 5 = Retry and Cancel
636
637 MB_ICONSTOP "X" in a red circle
638 MB_ICONQUESTION question mark in a bubble
639 MB_ICONEXCLAMATION exclamation mark in a yellow triangle
640 MB_ICONINFORMATION "i" in a bubble
641
642TITLE specifies an optional window title. The default is "Perl".
643
644The function returns the menu id of the selected push button:
645
646 0 Error
647
648 1 OK
649 2 Cancel
650 3 Abort
651 4 Retry
652 5 Ignore
653 6 Yes
654 7 No
655
656=item Win32::NodeName()
657
658[CORE] Returns the Microsoft Network node-name of the current machine.
659
660=item Win32::RegisterServer(LIBRARYNAME)
661
82adc83d 662Loads the DLL LIBRARYNAME and calls the function DllRegisterServer.
b4ad57f4 663
664=item Win32::SetChildShowWindow(SHOWWINDOW)
665
666[CORE] Sets the I<ShowMode> of child processes started by system().
667By default system() will create a new console window for child
668processes if Perl itself is not running from a console. Calling
669SetChildShowWindow(0) will make these new console windows invisible.
670Calling SetChildShowWindow() without arguments reverts system() to the
671default behavior. The return value of SetChildShowWindow() is the
82adc83d 672previous setting or C<undef>. This function is only available in
673MSWin32 builds of perl.
b4ad57f4 674
82adc83d 675The following symbolic constants for SHOWWINDOW are available
b4ad57f4 676(but not exported) from the Win32 module: SW_HIDE, SW_SHOWNORMAL,
677SW_SHOWMINIMIZED, SW_SHOWMAXIMIZED and SW_SHOWNOACTIVATE.
678
679=item Win32::SetCwd(NEWDIRECTORY)
680
681[CORE] Sets the current active drive and directory. This function does not
682work with UNC paths, since the functionality required to required for
683such a feature is not available under Windows 95.
684
685=item Win32::SetLastError(ERROR)
686
687[CORE] Sets the value of the last error encountered to ERROR. This is
688that value that will be returned by the Win32::GetLastError()
689function.
690
691=item Win32::Sleep(TIME)
692
693[CORE] Pauses for TIME milliseconds. The timeslices are made available
694to other processes and threads.
695
696=item Win32::Spawn(COMMAND, ARGS, PID)
697
698[CORE] Spawns a new process using the supplied COMMAND, passing in
699arguments in the string ARGS. The pid of the new process is stored in
700PID. This function is deprecated. Please use the Win32::Process module
701instead.
702
703=item Win32::UnregisterServer(LIBRARYNAME)
704
82adc83d 705Loads the DLL LIBRARYNAME and calls the function
b4ad57f4 706DllUnregisterServer.
707
708=back
709
710=cut