| 74 | } |
| 75 | |
| 76 | void fxGenerateTag(void* console, txString buffer, txInteger bufferSize, txString path) |
| 77 | { |
| 78 | static txInteger gxTag = 0; |
| 79 | snprintf(buffer, bufferSize, "#%d@%s", gxTag, path); |
| 80 | gxTag++; |
| 81 | } |
| 82 | |
| 83 | void fxVReport(void* console, txString theFormat, c_va_list theArguments) |
| 84 | { |