hti/PC_Tools/HTIGateway/ServicePlugins/HtiStif/HtiStifSender.h
branchRCL_3
changeset 59 8ad140f3dd41
parent 0 a03f92240627
equal deleted inserted replaced
49:7fdc9a71d314 59:8ad140f3dd41
       
     1 /*
       
     2 * Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). 
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 * 
       
    14 * Description:
       
    15 */
       
    16 // HTI service functions
       
    17 //gsoap ns1 service name: HtiStif
       
    18 //gsoap ns1 service namespace: urn:hti
       
    19 //gsoap ns1 service style: rpc
       
    20 //gsoap ns1 service encoding: literal
       
    21 //gsoap ns1 service location: http://localhost:2000
       
    22 
       
    23 typedef char*			xsd__string;
       
    24 typedef int				xsd__int;
       
    25 
       
    26 struct ns1__HtiStifResult
       
    27 {
       
    28     xsd__int		caseId;
       
    29     xsd__int		caseResult;
       
    30     xsd__int		executionResult;
       
    31 	xsd__string		resultDescription;
       
    32 };
       
    33 
       
    34 //gsoap ns1 service method-action: stifMessage "HtiStif"
       
    35 int ns1__stifMessage(
       
    36 	xsd__string		message,
       
    37     void dummy // One-Way Message Passing
       
    38 );
       
    39 
       
    40 //gsoap ns1 service method-action: stifResult "HtiStif"
       
    41 int ns1__stifResult(
       
    42     struct ns1__HtiStifResult result,
       
    43     void dummy // One-Way Message Passing
       
    44 );