Returns true if the time zone is offset-based or false if region-based.
| 1143 | |
| 1144 | // Returns true if the time zone is offset-based or false if region-based. |
| 1145 | static inline bool isOffset(USHORT timeZone) |
| 1146 | { |
| 1147 | return timeZone <= ONE_DAY * 2; |
| 1148 | } |
| 1149 | |
| 1150 | // Makes a time zone id from offsets. |
| 1151 | static USHORT makeFromOffset(int sign, unsigned tzh, unsigned tzm) |
no outgoing calls
no test coverage detected