| 1592 | // Output one 16 bit or 32 bit value into the metafile buffer stream. |
| 1593 | |
| 1594 | void MetaWord(word w) |
| 1595 | { |
| 1596 | char sz[cchSzDef]; |
| 1597 | |
| 1598 | if ((pbyte)gi.pwMetaCur - gi.bm >= gi.cbMeta) { |
| 1599 | sprintf(sz, "Metafile would be more than %ld bytes.", gi.cbMeta); |
| 1600 | PrintError(sz); |
| 1601 | Terminate(tcFatal); |
| 1602 | } |
| 1603 | *gi.pwMetaCur = w; |
| 1604 | gi.pwMetaCur++; |
| 1605 | } |
| 1606 | |
| 1607 | void MetaLong(long l) |
| 1608 | { |
no test coverage detected