Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[xlsb] update defines to revision 17.0 #1004

Merged
merged 1 commit into from
Apr 25, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 19 additions & 3 deletions src/xlsb_defines.h
Original file line number Diff line number Diff line change
Expand Up @@ -1015,7 +1015,7 @@ enum RecordTypes
BrtBeginModelTimeGrouping = 2139,
BrtEndModelTimeGrouping = 2140,
BrtModelTimeGroupingCalcCol = 2141,
BrtUID = 3072,
BrtUID = 3072, /* No longer part of 2.3.2 By Number */
BrtRevisionPtr = 3073,
BrtBeginDynamicArrayPr = 4096,
BrtEndDynamicArrayPr = 4097,
Expand All @@ -1037,7 +1037,23 @@ enum RecordTypes
BrtBeginCalcFeatures = 5095,
BrtEndCalcFeatures = 5096,
BrtCalcFeature = 5097,
BrtExternalLinksPr = 5099
BrtExternalLinksPr = 5099,
BrtPivotCacheImplicitMeasureSupport = 5100,
BrtPivotFieldIgnorableAfter = 5101,
BrtPivotHierarchyIgnorableAfter = 5102,
BrtPivotDataFieldFutureData = 5103,
BrtPivotCacheRichData = 5105,
BrtExternalLinksAlternateUrls = 5108,
BrtBeginPivotVersionInfo = 5109,
BrtEndPivotVersionInfo = 5110,
BrtBeginCacheVersionInfo = 5111,
BrtEndCacheVersionInfo = 5112, /* possible typo in 2.3.2 By Number */
BrtPivotRequiredFeature = 5113,
BrtPivotLastUsedFeature = 5114,
BrtExternalCodeService = 5117,
BrtSXDIAggregation = 5130,
BrtPivotFieldFeatureSupportInfo = 5131,
BrtPivotCacheAutoRefresh = 5132
};

enum PtgTypes
Expand Down Expand Up @@ -1644,7 +1660,7 @@ std::string Ftab(const uint16_t val) {
case 0x0059: return "CALLER()";
case 0x005A: return "DEREF(%s)";
case 0x005B: return "WINDOWS";
case 0x005C: return "SERIES";
case 0x005C: return "SERIES"; /* no longer in 2.5.98.10 Ftab */
case 0x005D: return "DOCUMENTS";
case 0x005E: return "ACTIVE.CELL()";
case 0x005F: return "SELECTION()";
Expand Down
Loading