-
-
Notifications
You must be signed in to change notification settings - Fork 233
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add template and objfreespace sections
template is the 2000 MEASUREMENT section (maybe rename the old one),
- Loading branch information
Showing
8 changed files
with
288 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
/* -*- c -*- */ | ||
/*****************************************************************************/ | ||
/* LibreDWG - free implementation of the DWG file format */ | ||
/* */ | ||
/* Copyright (C) 2020 Free Software Foundation, Inc. */ | ||
/* */ | ||
/* This library is free software, licensed under the terms of the GNU */ | ||
/* General Public License as published by the Free Software Foundation, */ | ||
/* either version 3 of the License, or (at your option) any later version. */ | ||
/* You should have received a copy of the GNU General Public License */ | ||
/* along with this program. If not, see <http://www.gnu.org/licenses/>. */ | ||
/*****************************************************************************/ | ||
|
||
/* | ||
* objfreespace.spec: AcDb:ObjFreeSpace section specification | ||
* written by Reini Urban | ||
*/ | ||
|
||
#include "spec.h" | ||
|
||
UNTIL (R_2007) | ||
{ | ||
FIELD_CAST (zero, RL, RLL, 0); | ||
FIELD_CAST (num_handles, RL, RLL, 0); | ||
FIELD_TIMERLL (TDUPDATE, 0); | ||
FIELD_RLx (objects_address, 0); | ||
FIELD_RC (num_nums, 0); | ||
FIELD_RLL (max32, 0); // 0x32 | ||
FIELD_RLL (max64, 0); // 0x64 | ||
FIELD_RLL (maxtbl, 0); // 0x200 | ||
FIELD_RLL (maxrl, 0); // 0xffffffff | ||
} | ||
LATER_VERSIONS { | ||
FIELD_RLL (zero, 0); | ||
FIELD_RLL (num_handles, 0); | ||
FIELD_TIMERLL (TDUPDATE, 0); | ||
FIELD_RC (num_nums, 0); | ||
// num types are not 64 bit, but 128 | ||
FIELD_RLL (max32, 0); // 0x32 | ||
FIELD_RLL (max32_hi, 0); // | ||
FIELD_RLL (max64, 0); // 0x64 | ||
FIELD_RLL (max64_hi, 0); // 0x0 | ||
FIELD_RLL (maxtbl, 0); // 0x200 | ||
FIELD_RLL (maxtbl_hi, 0); // 0x0 | ||
FIELD_RLL (maxrl, 0); // 0xffffffff | ||
FIELD_RLL (maxrl_hi, 0); // 0x0 | ||
} | ||
DEBUG_HERE |
Oops, something went wrong.