/* @(#)72       1.3  src/examples/bank/trans.idl, examples.src, os2dce21.dss, 960602a.1  6/10/94  18:21:50 */
/*
 * COMPONENT_NAME:  examples.src
 *
 * FUNCTIONS:
 *
 * ORIGINS: 2, 27
 *
 * (C) COPYRIGHT International Business Machines Corp. 1991, 1992, 1994
 * All Rights Reserved
 * Licensed Materials - Property of IBM
 *
 * US Government Users Restricted Rights - Use, duplication or
 * disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
 *
 */
/*
 *	Copyright  1987 by Apollo Computer Inc., Chelmsford, Massachusetts
 *
 *   	DESCRIPTION:
 *      	The interface defenition language (idl) file.  Used by 
 *		the NILD compiler to generate the necessary stub and 
 *		header files.
 *
 *   	HISTORY:
 *      	5/01/91        Code Complete           Gerald Cantor
 *      	5/08/92        Removed well-known eps  Gerald Cantor
 */
[uuid(88fdbace-f5a3-11c9-9999-02608c2ea88e), pointer_default(ptr),
 version(0)]
interface trans
{
	import "acct_type.idl";

	error_status_t deposit(
		[in] handle_t h,
		[in] char name[30],
		[in] long amount
	);

	error_status_t withdraw(
		[in] handle_t h,
		[in] char name[30],
		[in] long amount
	);
}
