12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- /*
- * CDE - Common Desktop Environment
- *
- * Copyright (c) 1993-2012, The Open Group. All rights reserved.
- *
- * These libraries and programs are free software; you can
- * redistribute them and/or modify them under the terms of the GNU
- * Lesser General Public License as published by the Free Software
- * Foundation; either version 2 of the License, or (at your option)
- * any later version.
- *
- * These libraries and programs are distributed in the hope that
- * they 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 these libraries and programs; if not, write
- * to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
- * Floor, Boston, MA 02110-1301 USA
- */
- /* $XConsortium: convert2-4.h /main/1 1996/04/21 19:22:29 drk $ */
- /*
- * (c) Copyright 1993, 1994 Hewlett-Packard Company
- * (c) Copyright 1993, 1994 International Business Machines Corp.
- * (c) Copyright 1993, 1994 Novell, Inc.
- * (c) Copyright 1993, 1994 Sun Microsystems, Inc.
- */
- #ifndef _CONVERT2_4_H
- #define _CONVERT2_4_H
- #include "ansi_c.h"
- /* convert2-4.h: conversion routines for rpc.cmsd version 2 to
- rpc.cmsd version 4 data types
- */
- extern Table_Args_4 *_DtCm_tableargs2_to_tableargs4(Table_Args_2*);
- extern Table_Args_4 *_DtCm_tabledelargs2_to_tabledelargs4(Table_Args_2*, Options_4);
- extern Registration_4 *_DtCm_reg2_to_reg4(Registration_2*);
- extern Access_Args_4 *_DtCm_accargs2_to_accargs4(Access_Args_2*);
- extern Table_Res_4 *_DtCm_tableres2_to_tableres4(Table_Res_2*);
- extern Table_Status_4 _DtCm_tablestat2_to_tablestat4(Table_Status_2);
- extern Access_Status_4 _DtCm_accstat2_to_accstat4(Access_Status_2);
- extern Registration_Status_4 _DtCm_regstat2_to_regstat4(Registration_Status_2);
- #endif
|