Click here to Skip to main content
15,884,986 members
Articles / High Performance Computing / Parallel Processing

Use of free SocketPro package for creating super client and server applications

Rate me:
Please Sign up or sign in to vote.
4.48/5 (19 votes)
23 Feb 200211 min read 179.3K   6.3K   59  
A set of socket libraries for writing distributed computing applications over the internet
/* this file contains the actual definitions of */
/* the IIDs and CLSIDs */

/* link this file in with the server and any clients */


/* File created by MIDL compiler version 5.01.0164 */
/* at Mon Jan 21 17:37:09 2002
 */
/* Compiler settings for ClientSocket.idl:
    Os (OptLev=s), W1, Zp8, env=Win32, ms_ext, c_ext
    error checks: allocation ref bounds_check enum stub_data 
*/
//@@MIDL_FILE_HEADING(  )
#ifdef __cplusplus
extern "C"{
#endif 


#ifndef __IID_DEFINED__
#define __IID_DEFINED__

typedef struct _IID
{
    unsigned long x;
    unsigned short s1;
    unsigned short s2;
    unsigned char  c[8];
} IID;

#endif // __IID_DEFINED__

#ifndef CLSID_DEFINED
#define CLSID_DEFINED
typedef IID CLSID;
#endif // CLSID_DEFINED

const IID IID_ISktClient = {0x726360BC,0xAE26,0x11D5,{0x8A,0x74,0x00,0x20,0x78,0xB0,0x38,0xBB}};


const IID LIBID_CLIENTSOCKETLib = {0x696A50FD,0xB10B,0x11D5,{0x8A,0x80,0x00,0x20,0x78,0xB0,0x38,0xBB}};


const IID DIID__ISktClientEvents = {0x726360BE,0xAE26,0x11D5,{0x8A,0x74,0x00,0x20,0x78,0xB0,0x38,0xBB}};


const CLSID CLSID_SktClient = {0x696A510C,0xB10B,0x11D5,{0x8A,0x80,0x00,0x20,0x78,0xB0,0x38,0xBB}};


#ifdef __cplusplus
}
#endif

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Software Developer (Senior)
United States United States
Yuancai (Charlie) Ye, an experienced C/C++ software engineer, lives in Atlanta, Georgia. He is an expert at continuous inline request/result batching, real-time stream processing, asynchronous data transferring and parallel computation for the best communication throughput and latency. He has been working at SocketPro (https://github.com/udaparts/socketpro) for more than fifteen years.

Comments and Discussions