⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ok.idl

📁 分布式传输功能
💻 IDL
字号:
//File: hello.idl

[
uuid (76A68607-957C-467e-A910-3B335E0B2837),

version (1.0),
pointer_default(unique)
]

interface hello
{
typedef struct {
 char account_number[10];
 char account_type;
 float amount;}operation;
 
 void HelloProc([in]short sSize,[in,out,size_is(sSize)]char *p1);
 void add([in,out]float *amount);
// int  transact([in,string]unsigned char *account_number,[in]char type,[in,out]float *amount);
 int  transact([in] operation *u1,[in,out]float *moneny);
 int  query([in] operation *u1,[in,out]float *moneny);

 void Shutdown(void);
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -