- 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
WINTYP.IDL
Package: MSDN_VC98.zip [view]
Upload User: bangxh
Upload Date: 2007-01-31
Package Size: 42235k
Code Size: 1k
Category:
Windows Develop
Development Platform:
Visual C++
- /*************************************************************************
- Copyright Microsoft Corp. 1992-1996
- Remote Machine strout sample
- FILE : wintyp.idl
- PURPOSE : This file defines the interface for the strout example
- *************************************************************************/
- [
- uuid(da2a84e0-cabd-11cf-a8a4-00a0c9038450), // UUID
- pointer_default(unique), // Pointer default
- version(1.0) // Program version
- ]
- interface wintyp_sample
- {
- import "wtypes.idl"; // Need this to support the window dataypes
- /*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
- /* Declaration of the remote procedure. */
- /* This procedure will send the bitmap to the server, the server */
- /* will then either flip the image, or find the edges in it, before */
- /* sending it back to the client. */
- /*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
- BOOL ChangeBitmapRemote(
- [in] unsigned short action, // The action to take on the image
- [in, out] HBITMAP *bitmap); // The bitmap to send over the line
- void ShutDown(void); // Procedure to shut down the server
- }