| 3819 | typedef int ( __stdcall *FNSTRCMP ) ( LPCWSTR, LPCWSTR ); |
| 3820 | |
| 3821 | int CmpStd ( const void *s1, const void *s2 ) |
| 3822 | { |
| 3823 | int cmp = StrCmp ( ( ( SORTLINE * ) s1 )->pwszSortEntry, ( ( SORTLINE * ) s2 )->pwszSortEntry ); |
| 3824 | return ( cmp ) ? cmp : StrCmp ( ( ( SORTLINE * ) s1 )->pwszLine, ( ( SORTLINE * ) s2 )->pwszLine ); |
| 3825 | } |
| 3826 | |
| 3827 | int CmpStdRev ( const void *s1, const void *s2 ) |
| 3828 | { |
nothing calls this directly
no outgoing calls
no test coverage detected