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
IUnknownDemo.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++
- // IUnknownDemo.idl : IDL source for IUnknownDemo.dll
- //
- // This file will be processed by the MIDL tool to
- // produce the type library (IUnknownDemo.tlb) and marshalling code.
- import "oaidl.idl";
- import "ocidl.idl";
- [
- object,
- uuid(7E4933F5-9F96-4D4C-ABF1-8C6E0B4C8EE9),
- helpstring("IIMyObj Interface"),
- pointer_default(unique)
- ]
- interface IIMyObj : IUnknown
- {
- [helpstring("asdf")]HRESULT add([in] int a, [in] int b, [out] int* c);
- };
- [ object,
- uuid(7E4933F5-9F96-4D4C-ABF1-8C6E0B4C8EEA),
- helpstring("asdf")
- ]
- interface IHello:IUnknown
- {
- [helpstring("string")] HRESULT hello([in] BSTR name,[out] BSTR* result);
- };
- [
- uuid(E5739F31-7607-41F3-A60C-21A25ACA0A88),
- version(1.0),
- helpstring("IUnknownDemo 1.0 Type Library")
- ]
- library IUNKNOWNDEMOLib
- {
- importlib("stdole32.tlb");
- importlib("stdole2.tlb");
- [
- uuid(864CDFA4-2E80-48AF-B366-CC9228E364B9),
- helpstring("IMyObj Class")
- ]
- coclass IMyObj
- {
- [default] interface IIMyObj;
- interface IHello;
- };
- };