OpenIndiana and Solaris port
[oweals/cde.git] / cde / programs / dtinfo / DtMmdb / oliasdb / c_api_dlp_test.C
1 /*
2  * CDE - Common Desktop Environment
3  *
4  * Copyright (c) 1993-2012, The Open Group. All rights reserved.
5  *
6  * These libraries and programs are free software; you can
7  * redistribute them and/or modify them under the terms of the GNU
8  * Lesser General Public License as published by the Free Software
9  * Foundation; either version 2 of the License, or (at your option)
10  * any later version.
11  *
12  * These libraries and programs are distributed in the hope that
13  * they will be useful, but WITHOUT ANY WARRANTY; without even the
14  * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15  * PURPOSE. See the GNU Lesser General Public License for more
16  * details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with these librararies and programs; if not, write
20  * to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
21  * Floor, Boston, MA 02110-1301 USA
22  */
23 /* $XConsortium: c_api_dlp_test.C /main/5 1996/08/21 15:53:00 drk $ */
24
25 #include "oliasdb/DtMmdb.h"
26 #include <stdio.h>
27
28
29 extern "C"
30 void showDLPCell(DtMmdbInfoRequest* req)
31 {
32    DtMmdbHandle* id ;
33
34    if ( req == 0 ) return ;
35
36    id = DtMmdbDlpGetPrevSectionId(req);
37    if ( id )
38       fprintf(stderr, "        DLP: prevSectionId=%s\n", DtMmdbHandleToString(id));
39    DtMmdbFreeHandle(id);
40
41    id = DtMmdbDlpGetNextSectionId(req);
42    if ( id )
43       fprintf(stderr, "        DLP: nextSectionId=%s\n", DtMmdbHandleToString(id));
44    DtMmdbFreeHandle(id);
45 }
46
47 extern "C"
48 int test_dlp(int argc, char** argv)
49 {
50    int j = 0;
51    int i = 0;
52    DtMmdbInfoRequest* req ;
53
54    switch ( argc ) {
55      case 5:
56       {
57        i = DtMmdbOpenInfoLib(argv[2], argv[3], DtMmdbFalse);
58        j = DtMmdbGetBookCaseByName(i, argv[3]);
59
60        req = newDtMmdbInfoRequestWithPrimaryOid(j, argv[4]);
61        showDLPCell(req);
62
63        DtMmdbFreeInfoRequest(req);
64        DtMmdbCloseInfoLib(i);
65
66        break;
67       }
68       default:
69        fprintf(stderr, "invalid arguments\n");
70    }
71
72    fprintf(stderr, "infolib desc=%d\n", i);
73    return 0;
74 }
75
76
77