###############################################################################
#
# @(#)79        1.3  src/examples/svc/hello_svc/hel.sams, examples.src, os2dce21.dss, 960602a.1  8/13/95  13:56:54
#
# COMPONENT_NAME:  examples.src
#
# FUNCTIONS: none
#
# ORIGINS: 72
#
# (C) COPYRIGHT International Business Machines Corp. 1995
#  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.
#
# @OSF_COPYRIGHT@
# COPYRIGHT NOTICE
# Copyright (c) 1990, 1991, 1992, 1993, 1994 Open Software Foundation, Inc.
# ALL RIGHTS RESERVED (DCE).  See the file named COPYRIGHT.DCE in the
# src directory for the full copyright text.
#
###############################################################################


##########################################################################
# 
# sams input file for hello_svc.c
# 
##########################################################################

# Part I
component       hel

# Part II
serviceability  table hel_svc_table handle hel_svc_handle
start
 	sub-component 	hel_s_main	"main"	hel_i_svc_main
end

# Part III
start
code		hel_s_hello
sub-component	hel_s_main
attributes	"svc_c_sev_notice | svc_c_route_stderr"
text		"Hello world"
explanation	"A simple greeting message."
action		"Cheer up."
end
# 
# 
# If you specify <intable> and <undocumented> at the <start> of a
#  message, you can leave the explanation and action out. Note that
#  you have to specify intable if you want the thing to actually be
#  in the table, otherwise it won't be, and if (as is the case here)
#  the message is the only one in the table, no table will be generated
#  at all.
# 
# 

# Part IIIa
# Messages for serviceability table
# 
#  Note that there has to be one of these for each of
#   the sub-components declared in the second part of
#   the file (above)...
#

start		!intable undocumented
code		hel_i_svc_main
text		"hello_svc main"
end

