Click here to Skip to main content
15,891,905 members
Articles / Programming Languages / C#

An extensible math expression parser with plug-ins

Rate me:
Please Sign up or sign in to vote.
4.92/5 (147 votes)
13 Mar 2008CPOL51 min read 1.4M   29K   364  
Design and code for an extensible, maintainable, robust, and easy to use math parser.
/* 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 Wed Aug 18 21:12:59 2004
 */
/* Compiler settings for C:\projets\MTParser\MTPluginIDL\MTPluginIDL.idl:
    Oicf (OptLev=i2), 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_IMTPlugin = {0xC4DAF5B0,0xEE0F,0x4014,{0x89,0xE6,0x94,0x8F,0xB9,0xF7,0x9B,0x85}};


const IID LIBID_MTPLUGINIDLLib = {0x5291C973,0x5DC2,0x4D1D,{0xB9,0x80,0x4C,0x6A,0x3A,0x94,0x43,0x3D}};


const CLSID CLSID_MTPlugin = {0xE58C85C4,0xDF60,0x49B4,{0xAB,0x82,0xB4,0x4C,0xE7,0xE9,0xC3,0x48}};


#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, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Web Developer
Canada Canada
Software Engineer working at a fun and smart startup company

Comments and Discussions