| 40 | STRING_INFO Data; |
| 41 | |
| 42 | static inline VOID SetupSso(OUT STRING_INFO* StringInfo, const TChar* SsoBuffer) { |
| 43 | StringInfo->Buffer = const_cast<TChar*>(SsoBuffer); |
| 44 | StringInfo->Length = 0; |
| 45 | StringInfo->BufferSize = SSO_SIZE * sizeof(TChar); |
| 46 | StringInfo->SsoUsing = TRUE; |
| 47 | StringInfo->Buffer[0] = NullChar; |
| 48 | StringInfo->Buffer[SSO_SIZE - 1] = NullChar; |
| 49 | } |
| 50 | |
| 51 | static inline TChar* StrAllocMem(size_t Bytes) { |
| 52 | #ifdef _NTDDK_ |
nothing calls this directly
no outgoing calls
no test coverage detected