| 49 | } |
| 50 | |
| 51 | inline void add_string(UCHAR* &blr, const TEXT* string) |
| 52 | { |
| 53 | add_byte(blr, static_cast<int>(strlen(string))); |
| 54 | while (*string) |
| 55 | add_byte(blr, *string++); |
| 56 | } |
| 57 | |
| 58 | #endif // COMMON_STUFF_H |
nothing calls this directly
no test coverage detected