コード例 #1
0
            public void Add(BuildBlob blob, int offset, BaseRelocationType type)
            {
                if (blob == null)
                {
                    throw new ArgumentNullException("blob");
                }

                _list.Add(
                    new BuildEntry()
                {
                    Blob   = blob,
                    Offset = offset,
                    Type   = type,
                });
            }
コード例 #2
0
 public BaseRelocationEntry(BaseRelocationType type, uint offset)
 {
     _type   = type;
     _offset = offset;
 }
コード例 #3
0
 public BaseRelocationEntry(BaseRelocationType type, ushort offset)
 {
     Type   = type;
     Offset = offset;
 }
コード例 #4
0
 internal BaseRelocation(int offset, BaseRelocationType type)
 {
     Offset = offset;
     Type   = type;
 }
コード例 #5
0
 public BaseRelocationEntry(BaseRelocationType type, ushort offset)
 {
     Type = type;
     Offset = offset;
 }