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

📄 usercom.tlh

📁 一个调用COM的程序
💻 TLH
字号:
// Created by Microsoft (R) C/C++ Compiler Version 12.00.8168.0 (03f68757).
//
// UserCom.tlh
//
// C++ source equivalent of Win32 type library UserCom.tlb
// compiler-generated file created 07/16/04 at 19:22:59 - DO NOT EDIT!

#pragma once
#pragma pack(push, 8)

#include <comdef.h>

namespace UserCOM {

//
// Forward references and typedefs
//

struct __declspec(uuid("a6dc5611-d5e1-41e9-8cde-ca864003b4d0"))
/* dispinterface */ IUserCOM;
struct /* coclass */ UserCOM;

//
// Smart pointer typedef declarations
//

_COM_SMARTPTR_TYPEDEF(IUserCOM, __uuidof(IDispatch));

//
// Type library items
//

struct __declspec(uuid("a6dc5611-d5e1-41e9-8cde-ca864003b4d0"))
IUserCOM : IDispatch
{
    //
    // Property data
    //

    __declspec(property(get=GetUserName,put=PutUserName))
    _bstr_t UserName;
    __declspec(property(get=GetPWD,put=PutPWD))
    _bstr_t PWD;

    //
    // Wrapper methods for error-handling
    //

    // Methods:
    VARIANT_BOOL Login ( );

    // Properties:
    _bstr_t GetUserName ( );
    void PutUserName ( _bstr_t _val );
    _bstr_t GetPWD ( );
    void PutPWD ( _bstr_t _val );
};

struct __declspec(uuid("7c883a53-9845-4222-83d5-bf3b8908da32"))
UserCOM;
    // [ default ] dispinterface IUserCOM

//
// Wrapper method implementations
//

#include "UserCom.tli"

} // namespace UserCOM

#pragma pack(pop)

⌨️ 快捷键说明

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