System.LoadResourceModule

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function LoadResourceModule(ModuleName: PChar; CheckOwner: Boolean): THandle;

C++

extern DELPHI_PACKAGE NativeUInt __fastcall LoadResourceModule(WideChar * ModuleName, bool CheckOwner = true);

Properties

Type Visibility Source Unit Parent
function public
System.pas
System.hpp
System System

Description

Loads a resource module by a given name.

Call LoadResourceModule to load a resource module by a specified name.

On Windows, a resource module is a Dynamic Link Library containing one or more resources. On Linux, use the CheckOwner parameter to verify whether the loaded module has the same user and group credentials as the main application.

See Also