CALL_S.C
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:6k
源码类别:

Windows编程

开发平台:

Visual C++

  1. /* this ALWAYS GENERATED file contains the RPC server stubs */
  2. /* File created by MIDL compiler version 3.03.0110 */
  3. /* at Mon Mar 30 03:05:13 1998
  4.  */
  5. /* Compiler settings for call.idl:
  6.     Os (OptLev=s), W1, Zp8, env=Win32, ms_ext, c_ext, oldnames
  7.     error checks: none
  8. */
  9. //@@MIDL_FILE_HEADING(  )
  10. #include <string.h>
  11. #include "call.h"
  12. #define TYPE_FORMAT_STRING_SIZE   1                                 
  13. #define PROC_FORMAT_STRING_SIZE   7                                 
  14. typedef struct _MIDL_TYPE_FORMAT_STRING
  15.     {
  16.     short          Pad;
  17.     unsigned char  Format[ TYPE_FORMAT_STRING_SIZE ];
  18.     } MIDL_TYPE_FORMAT_STRING;
  19. typedef struct _MIDL_PROC_FORMAT_STRING
  20.     {
  21.     short          Pad;
  22.     unsigned char  Format[ PROC_FORMAT_STRING_SIZE ];
  23.     } MIDL_PROC_FORMAT_STRING;
  24. extern const MIDL_TYPE_FORMAT_STRING __MIDL_TypeFormatString;
  25. extern const MIDL_PROC_FORMAT_STRING __MIDL_ProcFormatString;
  26. /* Standard interface: callback, ver. 1.0,
  27.    GUID={0xD694C1C0,0x09D7,0x1068,{0x94,0xAF,0x00,0xDD,0x01,0x06,0x62,0xDA}} */
  28. extern RPC_DISPATCH_TABLE callback_DispatchTable;
  29. static const RPC_SERVER_INTERFACE callback___RpcServerInterface =
  30.     {
  31.     sizeof(RPC_SERVER_INTERFACE),
  32.     {{0xD694C1C0,0x09D7,0x1068,{0x94,0xAF,0x00,0xDD,0x01,0x06,0x62,0xDA}},{1,0}},
  33.     {{0x8A885D04,0x1CEB,0x11C9,{0x9F,0xE8,0x08,0x00,0x2B,0x10,0x48,0x60}},{2,0}},
  34.     &callback_DispatchTable,
  35.     0,
  36.     0,
  37.     0,
  38.     0,
  39.     0
  40.     };
  41. RPC_IF_HANDLE callback_ServerIfHandle = (RPC_IF_HANDLE)& callback___RpcServerInterface;
  42. extern const MIDL_STUB_DESC callback_StubDesc;
  43. void __RPC_STUB
  44. callback_Fibonacci(
  45.     PRPC_MESSAGE _pRpcMessage )
  46. {
  47.     short _RetVal;
  48.     MIDL_STUB_MESSAGE _StubMsg;
  49.     short nValue;
  50.     RPC_STATUS _Status;
  51.     
  52.     ((void)(_Status));
  53.     NdrServerInitializeNew(
  54.                           _pRpcMessage,
  55.                           &_StubMsg,
  56.                           &callback_StubDesc);
  57.     
  58.     RpcTryFinally
  59.         {
  60.         if ( (_pRpcMessage->DataRepresentation & 0X0000FFFFUL) != NDR_LOCAL_DATA_REPRESENTATION )
  61.             NdrConvert( (PMIDL_STUB_MESSAGE) &_StubMsg, (PFORMAT_STRING) &__MIDL_ProcFormatString.Format[0] );
  62.         
  63.         nValue = *(( short __RPC_FAR * )_StubMsg.Buffer)++;
  64.         
  65.         
  66.         _RetVal = Fibonacci(nValue);
  67.         
  68.         _StubMsg.BufferLength = 2U;
  69.         _pRpcMessage->BufferLength = _StubMsg.BufferLength;
  70.         
  71.         _Status = I_RpcGetBuffer( _pRpcMessage ); 
  72.         if ( _Status )
  73.             RpcRaiseException( _Status );
  74.         
  75.         _StubMsg.Buffer = (unsigned char __RPC_FAR *) _pRpcMessage->Buffer;
  76.         
  77.         *(( short __RPC_FAR * )_StubMsg.Buffer)++ = _RetVal;
  78.         
  79.         }
  80.     RpcFinally
  81.         {
  82.         }
  83.     RpcEndFinally
  84.     _pRpcMessage->BufferLength = 
  85.         (unsigned int)((long)_StubMsg.Buffer - (long)_pRpcMessage->Buffer);
  86.     
  87. }
  88. /* [callback] */ short Fibonacci2( 
  89.     /* [in] */ short nValue)
  90. {
  91.     RPC_BINDING_HANDLE _Handle = 0;
  92.     
  93.     short _RetVal;
  94.     
  95.     RPC_MESSAGE _RpcMessage;
  96.     
  97.     MIDL_STUB_MESSAGE _StubMsg;
  98.     
  99.     RpcTryFinally
  100.         {
  101.         NdrClientInitializeNew(
  102.                           ( PRPC_MESSAGE  )&_RpcMessage,
  103.                           ( PMIDL_STUB_MESSAGE  )&_StubMsg,
  104.                           ( PMIDL_STUB_DESC  )&callback_StubDesc,
  105.                           0);
  106.         
  107.         
  108.         _Handle = I_RpcGetCurrentCallHandle();;
  109.         
  110.         
  111.         _StubMsg.BufferLength = 2U;
  112.         NdrGetBuffer( (PMIDL_STUB_MESSAGE) &_StubMsg, _StubMsg.BufferLength, _Handle );
  113.         
  114.         *(( short __RPC_FAR * )_StubMsg.Buffer)++ = nValue;
  115.         
  116.         NdrSendReceive( (PMIDL_STUB_MESSAGE) &_StubMsg, (unsigned char __RPC_FAR *) _StubMsg.Buffer );
  117.         
  118.         if ( (_RpcMessage.DataRepresentation & 0X0000FFFFUL) != NDR_LOCAL_DATA_REPRESENTATION )
  119.             NdrConvert( (PMIDL_STUB_MESSAGE) &_StubMsg, (PFORMAT_STRING) &__MIDL_ProcFormatString.Format[0] );
  120.         
  121.         _RetVal = *(( short __RPC_FAR * )_StubMsg.Buffer)++;
  122.         
  123.         }
  124.     RpcFinally
  125.         {
  126.         NdrFreeBuffer( (PMIDL_STUB_MESSAGE) &_StubMsg );
  127.         
  128.         }
  129.     RpcEndFinally
  130.     
  131.     return _RetVal;
  132. }
  133. void __RPC_STUB
  134. callback_Shutdown(
  135.     PRPC_MESSAGE _pRpcMessage )
  136. {
  137.     MIDL_STUB_MESSAGE _StubMsg;
  138.     RPC_STATUS _Status;
  139.     
  140.     ((void)(_Status));
  141.     NdrServerInitializeNew(
  142.                           _pRpcMessage,
  143.                           &_StubMsg,
  144.                           &callback_StubDesc);
  145.     
  146.     RpcTryFinally
  147.         {
  148.         
  149.         Shutdown();
  150.         
  151.         }
  152.     RpcFinally
  153.         {
  154.         }
  155.     RpcEndFinally
  156.     _pRpcMessage->BufferLength = 
  157.         (unsigned int)((long)_StubMsg.Buffer - (long)_pRpcMessage->Buffer);
  158.     
  159. }
  160. static const MIDL_STUB_DESC callback_StubDesc = 
  161.     {
  162.     (void __RPC_FAR *)& callback___RpcServerInterface,
  163.     MIDL_user_allocate,
  164.     MIDL_user_free,
  165.     0,
  166.     0,
  167.     0,
  168.     0,
  169.     0,
  170.     __MIDL_TypeFormatString.Format,
  171.     0, /* -error bounds_check flag */
  172.     0x10001, /* Ndr library version */
  173.     0,
  174.     0x303006e, /* MIDL Version 3.3.110 */
  175.     0,
  176.     0,
  177.     0,  /* Reserved1 */
  178.     0,  /* Reserved2 */
  179.     0,  /* Reserved3 */
  180.     0,  /* Reserved4 */
  181.     0   /* Reserved5 */
  182.     };
  183. static RPC_DISPATCH_FUNCTION callback_table[] =
  184.     {
  185.     callback_Fibonacci,
  186.     callback_Shutdown,
  187.     0
  188.     };
  189. RPC_DISPATCH_TABLE callback_DispatchTable = 
  190.     {
  191.     2,
  192.     callback_table
  193.     };
  194. #if !defined(__RPC_WIN32__)
  195. #error  Invalid build platform for this stub.
  196. #endif
  197. static const MIDL_PROC_FORMAT_STRING __MIDL_ProcFormatString =
  198.     {
  199.         0,
  200.         {
  201. 0x4e, /* FC_IN_PARAM_BASETYPE */
  202. 0x6, /* FC_SHORT */
  203. /*  2 */ 0x53, /* FC_RETURN_PARAM_BASETYPE */
  204. 0x6, /* FC_SHORT */
  205. /*  4 */ 0x5b, /* FC_END */
  206. 0x5c, /* FC_PAD */
  207. 0x0
  208.         }
  209.     };
  210. static const MIDL_TYPE_FORMAT_STRING __MIDL_TypeFormatString =
  211.     {
  212.         0,
  213.         {
  214. 0x0
  215.         }
  216.     };