| 231 | } |
| 232 | |
| 233 | void EnterAttributeIntoString(BOOL bEnter, TCHAR *string, int pos, TCHAR chAttribute) |
| 234 | { |
| 235 | if(bEnter) |
| 236 | { |
| 237 | string[pos] = chAttribute; |
| 238 | } |
| 239 | else |
| 240 | { |
| 241 | string[pos] = '-'; |
| 242 | } |
| 243 | } |
| 244 | |
| 245 | BOOL GetFileOwner(const TCHAR *szFile, TCHAR *szOwner, size_t cchMax) |
| 246 | { |
no outgoing calls
no test coverage detected