// ------------------------------- //
// -------- Start of File -------- //
// ------------------------------- //
// ----------------------------------------------------------- //
// C++ Source Code File Name: testprog.cpp
// Compiler Used: MSVC, BCC32, GCC, HPUX aCC, SOLARIS CC
// Produced By: Doug Gaer
// File Creation Date: 07/31/2000
// Date Last Modified: 08/11/2000
// Copyright (c) 1997, 2000 Douglas M. Gaer
// ----------------------------------------------------------- //
// ------------- Program Description and Details ------------- //
// ----------------------------------------------------------- //
/*
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
USA
This is a test program used to display various VBD header sizes.
*/
// ----------------------------------------------------------- //
#include <iostream.h>
#include "vbhdr64.h"
int main()
{
cout << "VBD file header = " << sizeof(vbFileHeader) << endl;
cout << "VBD block header = " << sizeof(vbBlockHeader) << endl;
cout << "VBD file lock hdr = " << sizeof(vbFileLockHeader) << endl;
cout << "VBD record lock hdr = " << sizeof(vbRecordLockHeader) << endl;
cout << "VBD file header 64 = " << sizeof(vbFileHeader64) << endl;
cout << "VBD block header 64 = " << sizeof(vbBlockHeader64) << endl;
return 0;
}
// ----------------------------------------------------------- //
// ------------------------------- //
// --------- End of File --------- //
// ------------------------------- //