| 218 | |
| 219 | |
| 220 | void ChangeObjectReference(ILint *ObjRef, ILboolean *IsImported) |
| 221 | { |
| 222 | if (*ObjRef < 0) { |
| 223 | *IsImported = IL_TRUE; |
| 224 | *ObjRef = -*ObjRef - 1; |
| 225 | } |
| 226 | else if (*ObjRef > 0) { |
| 227 | *IsImported = IL_FALSE; |
| 228 | *ObjRef = *ObjRef - 1; // This is an object reference, so we have to do this conversion. |
| 229 | } |
| 230 | else { |
| 231 | *ObjRef = -1; // "NULL" pointer |
| 232 | } |
| 233 | |
| 234 | return; |
| 235 | } |
| 236 | |
| 237 | |
| 238 | bool GetUtxExportTable(vector <UTXEXPORTTABLE> &ExportTable, UTXHEADER &Header) |
no outgoing calls
no test coverage detected