Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Write missing next record list. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
7c8be614a69b5945e5c681227e5953ad |
User & Date: | stephanie.gawroriski 2019-07-13 17:14:09 |
Context
2019-07-13
| ||
17:19 | Remove unique ID; Write short for record ID. check-in: 5c99e150ea user: stephanie.gawroriski tags: trunk | |
17:14 | Write missing next record list. check-in: 7c8be614a6 user: stephanie.gawroriski tags: trunk | |
16:49 | Writing of PalmOS databases or resources. check-in: 24f52edab8 user: stephanie.gawroriski tags: trunk | |
Changes
Changes to bldt/libs/palmos-utils/dev/shadowtail/palmos/PalmDatabaseBuilder.java.
367 368 369 370 371 372 373 374 375 376 377 378 379 380 |
dos.writeInt(PalmDatabaseBuilder.__fourToInt(this._type)); // Creator dos.writeInt(PalmDatabaseBuilder.__fourToInt(this._creator)); // Unique ID dos.writeInt(this._uniqueid); // Need to work with records now List<PalmRecord> records = this._records; int numrecords = records.size(); // Write record count dos.writeShort(numrecords); |
> > > |
367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 |
dos.writeInt(PalmDatabaseBuilder.__fourToInt(this._type)); // Creator dos.writeInt(PalmDatabaseBuilder.__fourToInt(this._creator)); // Unique ID dos.writeInt(this._uniqueid); // Next record list (unused in files) dos.writeInt(0); // Need to work with records now List<PalmRecord> records = this._records; int numrecords = records.size(); // Write record count dos.writeShort(numrecords); |