Search results for "module:Win32"

Win32 - Interfaces to some Win32 API Functions River stage two • 33 direct dependents • 63 total dependents

The Win32 module contains functions to access Win32 APIs. Alphabetical Listing of Win32 Functions It is recommended to "use Win32;" before any of these functions; however, for backwards compatibility, those marked as [CORE] will automatically do this...

JDB/Win32-0.59 - 05 May 2022 16:46:02 UTC

Win32::MinXSLT - XSLT Interface to the Win32 Msxml2.DOMDocument library River stage one • 1 direct dependent • 1 total dependent

You are on Windows and you would like to use XML::LibXSLT, but there is no pre-compiled version of XML::LibXSLT available (that is, for example, currently the case on 64-bit Windows, where only 32-bit versions of XML::LibXSLT are available). In that ...

KEICHNER/Win32-MinXSLT-0.04 - 28 Dec 2014 15:43:03 UTC

Win32::IPC - Base class for Win32 synchronization objects River stage one • 4 direct dependents • 5 total dependents

This module is loaded by the other Win32 synchronization modules. You shouldn't need to load it yourself. It supplies the wait functions to those modules. The synchronization modules are Win32::ChangeNotify, Win32::Event, Win32::Mutex, & Win32::Semap...

CJM/Win32-IPC-1.11 - 15 Nov 2014 18:17:29 UTC

Win32::OLE - OLE Automation extensions River stage two • 36 direct dependents • 38 total dependents

This module provides an interface to OLE Automation from Perl. OLE Automation brings VisualBasic like scripting capabilities and offers powerful extensibility and the ability to control many Win32 applications from Perl scripts. The Win32::OLE module...

JDB/Win32-OLE-0.1713 - 03 Apr 2021 04:13:13 UTC

Win32::ADO - ADO Constants and a couple of helper functions River stage zero No dependents

Not much to say. Simply provides all the ADO constants for your use, like in VBScript (or JavaScript). This module is really deprecated in favour of Win32::OLE::Const, and the proper ADO constants. Use that with the following syntax: use Win32::OLE::...

MSERGEANT/Win32-ADO-0.03 - 15 Jun 1999 10:47:21 UTC

Win32::Exe - Manipulate Win32 executable files River stage one • 2 direct dependents • 3 total dependents

This module parses and manipulating Win32 PE/COFF executable headers, including version information, icons, manifest and other resources. The module Win32::Exe::Manifest can be used for manifest handling. A script exe_update.pl is provided for simple...

MDOOTSON/Win32-Exe-0.17 - 19 Jul 2011 21:58:18 UTC

Win32::HTA - HTML Applications with Perl as local backend River stage zero No dependents

HTML Applications are an easy way to build simple and not so simple GUI applications using HTML with script languages supported by Internet Explorer (Javascript, VBScript and even PerlScript if you are using ActivePerl). As I am using Strawberry Perl...

TOMK/Win32-HTA-1.02 - 07 Apr 2016 14:12:27 UTC

Win32::Env - set and retrieve global system and user environment variables under Win32. River stage zero No dependents

ROWAA/Win32-Env-0.03 - 13 Oct 2006 09:17:39 UTC

Win32::Job - Run sub-processes in a "job" environment River stage one • 1 direct dependent • 2 total dependents

Windows 2000 introduced the concept of a "job": a collection of processes which can be controlled as a single unit. For example, you can reliably kill a process and all of its children by launching the process in a job, then telling Windows to kill a...

JDB/Win32-Job-0.05 - 28 Nov 2013 22:50:34 UTC

Win32::Ldd - Track dependencies for Windows EXE and DLL PE-files River stage one • 1 direct dependent • 1 total dependent

This module is an XS wrapper for the ntldd <https://github.com/LRN/ntldd> library. It can inspect Windows PE files and extract information about its dependencies. FUNCTIONS The following function can be imported from the module: $dep_tree = pe_depend...

SALVA/Win32-Ldd-0.02 - 26 Jun 2017 13:41:23 UTC

Win32::MMF - Win32 Memory Mapped File (MMF) Support for Perl River stage one • 1 direct dependent • 1 total dependent

Programming Style This module provides three types of interfaces - object-oriented, functional, and tied interfaces (Via "Win32::MMF::Shareable"). The default access method is via objects. The functional interface is not exported by default because i...

ROGER/Win32-MMF-0.09e - 29 May 2004 00:25:45 UTC

Win32::ASP - a module for ASP (PerlScript) Programming River stage zero No dependents

I knocked these routines together one day when I was wondering "Why don't my "print" statements output to the browser?" and "Why don't "exit" and "die" end my script?" So I started investigating how I could overload the core functions. "print" is ove...

WNODOM/Win32-ASP-2.15 - 26 Mar 2001 15:43:55 UTC

Win32::API - Perl Win32 API Import Facility River stage two • 30 direct dependents • 34 total dependents

To use this module put the following line at the beginning of your script: use Win32::API; You can now use the "new()" function of the Win32::API module to create a new Win32::API::More object (see "IMPORTING A FUNCTION") and then invoke the "Call()"...

BULKDD/Win32-API-0.84 - 21 Jan 2016 20:13:25 UTC

Win32::CLR - Use .NET Framework facilities in Perl River stage zero No dependents

Win32::CLR provides utility methods to using Microsoft .NET Framework, also known as Common Language Runtime. It is available for creating object, calling method, accessing field or property, converting perl subroutine to delegate, loading assembly....

YAMATO/Win32-CLR-0.03 - 30 Jun 2008 15:29:06 UTC

Win32::Wlan - Query wlan properties River stage zero No dependents

CORION/Win32-Wlan-0.07 - 03 Dec 2022 09:11:53 UTC

Win32::ODBC - ODBC Extension for Win32 River stage zero No dependents

Background This is a hack of Dan DeMaggio's <dmag@umich.edu> NTXS.C ODBC implementation. I have recoded and restructured most of it including most of the ODBC.PM package, but its very core is still based on Dan's code (thanks Dan!). The history of th...

JDB/Win32-ODBC-0.036 - 01 Sep 2020 03:34:17 UTC

Win32::RASE - managing dialup entries and network connections on Win32 River stage zero No dependents

This module is a collection of subroutines. As their names are very long and specific and almost each corresponds to a Win32 API call I decided to export a lot of them by default. Everything is exported except those subs that are claimed as non-expor...

MBLAZ/Win32-RASE-1.01 - 09 Mar 2000 00:11:15 UTC

Win32::Pipe - Win32 Named Pipe River stage one • 1 direct dependent • 3 total dependents

General Use This extension gives Win32 Perl the ability to use Named Pipes. Why? Well considering that Win32 Perl does not (yet) have the ability to "fork" I could not see what good the "pipe(X,Y)" was. Besides, where I am as an admin I must have sev...

JDB/Win32-Pipe-0.026 - 30 Oct 2020 05:39:43 UTC

Win32::File - Manage file attributes in perl River stage one • 3 direct dependents • 9 total dependents

This module offers the retrieval and setting of file attributes....

JDB/Win32-File-0.07 - 28 Nov 2013 21:05:26 UTC

Win32::Scsv - Convert from and to *.xls, *.csv using Win32::OLE River stage zero No dependents

KEICHNER/Win32-Scsv-0.41 - 26 Nov 2018 20:30:17 UTC
601 results (0.028 seconds)