---------------------------------------------------------------------------
| 1248 | } |
| 1249 | //--------------------------------------------------------------------------- |
| 1250 | BYTE HexVal(char hex) |
| 1251 | { |
| 1252 | hex = (char)CharUpper((LPTSTR)hex); |
| 1253 | if( (hex>='0') && (hex<='9') ) return (BYTE)(hex-'0'); |
| 1254 | if( (hex>='A') && (hex<='F') ) return (BYTE)(hex-'A'+10); |
| 1255 | return 0; |
| 1256 | } |
| 1257 | //--------------------------------------------------------------------------- |
| 1258 | int VariantGetValuesCount(Variant v) |
| 1259 | { |
nothing calls this directly
no outgoing calls
no test coverage detected