Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
MyControl.idl
Package: code_and_note_of_COM.rar [view]
Upload User: weisheen
Upload Date: 2022-07-09
Package Size: 19390k
Code Size: 1k
Category:
ActiveX-DCOM-ATL
Development Platform:
Visual C++
- // MyControl.idl : IDL source for MyControl.dll
- //
- // This file will be processed by the MIDL tool to
- // produce the type library (MyControl.tlb) and marshalling code.
- import "oaidl.idl";
- import "ocidl.idl";
- #include "olectl.h"
- [
- object,
- uuid(A87F950A-9BDC-41BF-8E0C-BCD35ACED36C),
- dual,
- helpstring("IMyPassword Interface"),
- pointer_default(unique)
- ]
- interface IMyPassword : IDispatch
- {
- };
- [
- uuid(A68826A9-F26E-4A0A-9849-4BA298395305),
- version(1.0),
- helpstring("MyControl 1.0 Type Library")
- ]
- library MYCONTROLLib
- {
- importlib("stdole32.tlb");
- importlib("stdole2.tlb");
- [
- uuid(66BD8E97-FFE2-466A-B4F7-2E6E1A50F8EE),
- helpstring("_IMyPasswordEvents Interface")
- ]
- dispinterface _IMyPasswordEvents
- {
- properties:
- methods:
- [id(1),helpstring("hello")] HRESULT show([in] BSTR msg);
- };
- [
- uuid(5767BB37-47C2-4E2A-A457-66AC49EDFF12),
- helpstring("MyPassword Class")
- ]
- coclass MyPassword
- {
- [default] interface IMyPassword;
- [default, source] dispinterface _IMyPasswordEvents;
- };
- };