121 lines
3.5 KiB
C
121 lines
3.5 KiB
C
/* $XConsortium: c_api.C /main/4 1996/08/21 15:52:45 drk $ */
|
|
|
|
#include "oliasdb/DtMmdb.h"
|
|
#include <stdio.h>
|
|
|
|
#if ( ARCH == hpux)
|
|
extern "C"
|
|
char __pure_virtual_called()
|
|
{
|
|
return 0;
|
|
}
|
|
#endif
|
|
|
|
|
|
#ifdef DEBUG
|
|
|
|
extern "C"
|
|
void usage(int argc, char** argv)
|
|
{
|
|
fprintf(stderr, "Usage:\n");
|
|
fprintf(stderr, " %s 0 libpath [bookcaseName]\n", argv[0]);
|
|
fprintf(stderr, " %s 1 libpath bookcaseName locator (show bookcase)\n", argv[0]);
|
|
fprintf(stderr, " %s 2 libpath bookcaseName locator (show section)\n", argv[0]);
|
|
fprintf(stderr, " %s 3 libpath bookcaseName mmdboid (show section)\n", argv[0]);
|
|
fprintf(stderr, " %s 4 libpath bookcaseName mmdboid (show TOC)\n", argv[0]);
|
|
fprintf(stderr, " %s 5 libpath bookcaseName loc (show LOC)\n", argv[0]);
|
|
fprintf(stderr, " %s 6 libpath bookcaseName mmdboid (show LOC)\n", argv[0]);
|
|
fprintf(stderr, " %s 7 libpath bookcaseName loc (show graphic)\n", argv[0]);
|
|
fprintf(stderr, " %s 8 libpath bookcaseName mmdboid (show graphic)\n", argv[0]);
|
|
fprintf(stderr, " %s 9 libpath bookcaseName loc (show stylesheet)\n", argv[0]);
|
|
fprintf(stderr, " %s 10 libpath bookcaseName mmdboid (show stylesheet)\n", argv[0]);
|
|
fprintf(stderr, " %s 11 libpath bookcaseName mmdboid (show dlp)\n", argv[0]);
|
|
fprintf(stderr, " %s 12 libpath bookcaseName TOC_section_mmdboid (show book)\n", argv[0]);
|
|
fprintf(stderr, " %s 13 libpath bookcaseName book_mmdboid (show book)\n", argv[0]);
|
|
fprintf(stderr, " %s 14 libpath bookcaseName book_seq_num (show book)\n", argv[0]);
|
|
}
|
|
|
|
extern "C" int test0(int argc, char** argv);
|
|
extern "C" int test1(int argc, char** argv);
|
|
extern "C" int test2(int argc, char** argv);
|
|
extern "C" int test3(int argc, char** argv);
|
|
extern "C" int test4(int argc, char** argv);
|
|
extern "C" int test_loc1(int argc, char** argv);
|
|
extern "C" int test_loc2(int argc, char** argv);
|
|
extern "C" int test_graphic1(int argc, char** argv);
|
|
extern "C" int test_graphic2(int argc, char** argv);
|
|
extern "C" int test_ss1(int argc, char** argv);
|
|
extern "C" int test_ss2(int argc, char** argv);
|
|
extern "C" int test_dlp(int argc, char** argv);
|
|
extern "C" int test_book1(int argc, char** argv);
|
|
extern "C" int test_book2(int argc, char** argv);
|
|
extern "C" int test_book3(int argc, char** argv);
|
|
#endif
|
|
|
|
extern "C"
|
|
main( int argc, char** argv )
|
|
{
|
|
DtMmdbInit();
|
|
|
|
|
|
#ifdef DEBUG
|
|
if ( argc == 1 || 0==isdigit(argv[1][0]) ) {
|
|
usage(argc, argv);
|
|
} else
|
|
switch ( atoi(argv[1]) ) {
|
|
case 0:
|
|
test0(argc, argv);
|
|
break;
|
|
case 1:
|
|
test1(argc, argv);
|
|
break;
|
|
case 2:
|
|
test2(argc, argv);
|
|
break;
|
|
case 3:
|
|
test3(argc, argv);
|
|
break;
|
|
case 4:
|
|
test4(argc, argv);
|
|
break;
|
|
case 5:
|
|
test_loc1(argc, argv);
|
|
break;
|
|
case 6:
|
|
test_loc2(argc, argv);
|
|
break;
|
|
case 7:
|
|
test_graphic1(argc, argv);
|
|
break;
|
|
case 8:
|
|
test_graphic2(argc, argv);
|
|
break;
|
|
case 9:
|
|
test_ss1(argc, argv);
|
|
break;
|
|
case 10:
|
|
test_ss2(argc, argv);
|
|
break;
|
|
case 11:
|
|
test_dlp(argc, argv);
|
|
break;
|
|
case 12:
|
|
test_book1(argc, argv);
|
|
break;
|
|
case 13:
|
|
test_book2(argc, argv);
|
|
break;
|
|
case 14:
|
|
test_book3(argc, argv);
|
|
break;
|
|
default:
|
|
usage(argc, argv);
|
|
}
|
|
#endif
|
|
|
|
DtMmdbQuit();
|
|
|
|
exit(0);
|
|
}
|
|
|