| 10205 | } |
| 10206 | |
| 10207 | VarSizeType Script::GetFormatInteger(char *aBuf) |
| 10208 | { |
| 10209 | if (!aBuf) |
| 10210 | return 1; |
| 10211 | // For backward compatibility (due to StringCaseSense), never change the case used here: |
| 10212 | *aBuf = g.FormatIntAsHex ? 'H' : 'D'; |
| 10213 | *(aBuf + 1) = '\0'; |
| 10214 | return 1; |
| 10215 | } |
| 10216 | |
| 10217 | VarSizeType Script::GetFormatFloat(char *aBuf) |
| 10218 | { |