| 1151 | // ----------------- |
| 1152 | |
| 1153 | void |
| 1154 | XMPMeta::SetProperty_Int64 ( XMP_StringPtr schemaNS, |
| 1155 | XMP_StringPtr propName, |
| 1156 | XMP_Int64 propValue, |
| 1157 | XMP_OptionBits options ) |
| 1158 | { |
| 1159 | XMP_Assert ( (schemaNS != 0) && (propName != 0) ); // Enforced by wrapper. |
| 1160 | |
| 1161 | XMP_StringPtr valueStr; |
| 1162 | XMP_StringLen valueLen; |
| 1163 | |
| 1164 | XMPUtils::ConvertFromInt64 ( propValue, "", &valueStr, &valueLen ); |
| 1165 | SetProperty ( schemaNS, propName, valueStr, options ); |
| 1166 | |
| 1167 | } // SetProperty_Int64 |
| 1168 | |
| 1169 | |
| 1170 | // ------------------------------------------------------------------------------------------------- |
no outgoing calls
no test coverage detected