mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-02-24 14:59:03 +00:00
13 lines
305 B
C
13 lines
305 B
C
|
#ifndef COSMOPOLITAN_LIBC_NT_STRUCT_IMAGELINENUMBER_H_
|
||
|
#define COSMOPOLITAN_LIBC_NT_STRUCT_IMAGELINENUMBER_H_
|
||
|
|
||
|
struct NtImageLinenumber {
|
||
|
union {
|
||
|
uint32_t SymbolTableIndex;
|
||
|
uint32_t VirtualAddress;
|
||
|
} Type;
|
||
|
uint16_t Linenumber;
|
||
|
};
|
||
|
|
||
|
#endif /* COSMOPOLITAN_LIBC_NT_STRUCT_IMAGELINENUMBER_H_ */
|