| 132 | |
| 133 | |
| 134 | static inline uint16_t IncreaseVersion(HResourceFactory factory) |
| 135 | { |
| 136 | uint16_t next_version = factory->m_Version++; |
| 137 | if (next_version == RESOURCE_VERSION_INVALID) |
| 138 | { |
| 139 | return ++factory->m_Version; |
| 140 | } |
| 141 | return next_version; |
| 142 | } |
| 143 | |
| 144 | Result CheckSuppliedResourcePath(const char* name) |
| 145 | { |
no outgoing calls
no test coverage detected