this is used as a printf() replacement when the window * system isn't initialized yet */
| 106 | * system isn't initialized yet |
| 107 | */ |
| 108 | void msmsg |
| 109 | VA_DECL(const char *, fmt) |
| 110 | { |
| 111 | VA_START(fmt); |
| 112 | VA_INIT(fmt, const char *); |
| 113 | VA_END(); |
| 114 | return; |
| 115 | } |
| 116 | #endif /* WIN32CON */ |
| 117 | |
| 118 | char |
nothing calls this directly
no test coverage detected