diff options
| author | Mehmet Samet Duman <yongdohyun@projecttick.org> | 2026-04-04 12:41:27 +0300 |
|---|---|---|
| committer | Mehmet Samet Duman <yongdohyun@projecttick.org> | 2026-04-04 12:41:27 +0300 |
| commit | 4f2d36194b4f299aa7509d815c07121039ea833b (patch) | |
| tree | f3ded014bad3a4c76ff6a22b8726ebaab68c3d13 /mnv/src/iid_ole.c | |
| parent | 5b578e70c314723a3cde5c9bfc2be0bf1dadc93b (diff) | |
| download | Project-Tick-4f2d36194b4f299aa7509d815c07121039ea833b.tar.gz Project-Tick-4f2d36194b4f299aa7509d815c07121039ea833b.zip | |
NOISSUE change uvim folder name to mnv
Signed-off-by: Mehmet Samet Duman <yongdohyun@projecttick.org>
Diffstat (limited to 'mnv/src/iid_ole.c')
| -rw-r--r-- | mnv/src/iid_ole.c | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/mnv/src/iid_ole.c b/mnv/src/iid_ole.c new file mode 100644 index 0000000000..d3e6f1d163 --- /dev/null +++ b/mnv/src/iid_ole.c @@ -0,0 +1,57 @@ +// 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 3.00.44 +// at Sat Jan 03 16:34:55 1998 +// Compiler settings for if_ole.idl: +// Os (OptLev=s), W1, Zp8, env=Win32, ms_ext, c_ext +// error checks: none +//@@MIDL_FILE_HEADING( ) +#ifdef __cplusplus +extern "C"{ +#endif + +#ifdef __MINGW32__ +# include <w32api.h> + +# if __W32API_MAJOR_VERSION == 3 && __W32API_MINOR_VERSION < 10 + // This define is missing from older MingW versions of w32api, even though + // IID is defined. +# define __IID_DEFINED__ +# endif +#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 + +#ifndef CLSID_DEFINED +# define CLSID_DEFINED +typedef IID CLSID; +#endif + +const IID IID_IMNV = {0x0F0BFAE2,0x4C90,0x11d1,{0x82,0xD7,0x00,0x04,0xAC,0x36,0x85,0x19}}; + + +const IID LIBID_MNV = {0x0F0BFAE0,0x4C90,0x11d1,{0x82,0xD7,0x00,0x04,0xAC,0x36,0x85,0x19}}; + + +const CLSID CLSID_MNV = {0x0F0BFAE1,0x4C90,0x11d1,{0x82,0xD7,0x00,0x04,0xAC,0x36,0x85,0x19}}; + + +#ifdef __cplusplus +} +#endif + |
