Module: AMS::DLL

Defined in:
docs/ams/dll.rb

Overview

Note:

Windows only!

The DLL namespace contains functions that are associated with Windows DLL.

Since:

  • 3.0.0

Class Method Summary collapse

Class Method Details

.free_library(handle) ⇒ Boolean

Free loaded DLL.

Parameters:

  • handle (Integer)

    A handle to the loaded library.

Returns:

  • (Boolean)

    success

Since:

  • 3.0.0

.load_library(full_path) ⇒ Integer?

Load DLL.

Parameters:

  • full_path (String)

Returns:

  • (Integer, nil)

    A handle to the loaded library or nil if not successful.

Since:

  • 3.0.0