C# Class Fody.PeImage.Helpers

Provides helper methods for working with WinPE files.
Datei anzeigen Open project: Fody/Stamp

Public Methods

Method Description
Align ( long value ) : long

Aligns a value to the next 32-bit boundary.

HiWord ( uint value ) : ushort

Retrieves the high-order word from the specified 32-bit value.

LoWord ( uint value ) : ushort

Retrieves the low-order word from the specified value.

Method Details

Align() public static method

Aligns a value to the next 32-bit boundary.
public static Align ( long value ) : long
value long /// The value to align. ///
return long

HiWord() public static method

Retrieves the high-order word from the specified 32-bit value.
public static HiWord ( uint value ) : ushort
value uint /// The value to be converted. ///
return ushort

LoWord() public static method

Retrieves the low-order word from the specified value.
public static LoWord ( uint value ) : ushort
value uint /// The value to be converted. ///
return ushort