TimeDateStamp32

Represents a 32-bit time stamp in PE/COFF file format.

The low 32 bits of the number of seconds since 00:00 January 1, 1970 (a C run-time time_t value), which indicates when the file was created.

This value is commonly used in various PE/COFF structures:

  • COFF File Header: indicates when the file was created

  • Import Directory: date/time stamp of the DLL to import

  • Debug Directory: date/time stamp of the debug information

Constructors

Link copied to clipboard
constructor(value: UInt)

Types

Link copied to clipboard
object Companion
Link copied to clipboard

Properties

Link copied to clipboard
val value: UInt

The raw 32-bit value representing seconds since Unix epoch (00:00 January 1, 1970).

Functions

Link copied to clipboard
open operator override fun compareTo(other: TimeDateStamp32): Int
Link copied to clipboard
open override fun toString(): String

Converts the time stamp to its string representation in ISO-8601 format.