Files
Open-Shell-Menu/ClassicStartSrc/ClassicExplorer/ClassicExplorer.idl
Xenhat 0adcd693e4 Some branding and licensing work (#22)
* Fix stdafx include

* Fix basic handling of "Games" folder on Windows10 RS4 (#10)
This does the following:
- Sets the default state to hidden
- Skips the Games folder when searching

This does not:
- Hide the dead menu entry.

I do not currently know how to actively change the user preference setting to forcefully hide it.

* Add basic Visual Studio gitignore

* Add specific entries to gitignore

* Do not set default menu to Win7 on RS4 (#10)

* Rename "PC Settings" to "Settings" (#12)

* Create distinction between modern and legacy settings in search results

* Add more build artifacts to gitignore

* Add default paths for toolset and build all languages

* Fix several memsize, memtype and nullpointer issues

* create trunk branch containing all changes

* set fallback and next version to 4.3.2, set resource fallback value to allow loading in IDE

* add generated en-US.dll to gitignore

* Don't echo script contents, add disabled "git clean -dfx" to build fresh

* Initial re-branding work (#21)

* Create copy of __MakeFinal to build all languages (Use this file when releasing new versions)

* Move the registry key IvoSoft->Passionate-Coder (#21)

* Change company/mfg name IvoSoft->Passionate-Coder (#21)

* Update some leftover copyright dates (#21)

* Fix accidental copy-paste breaking MakeFinal scripts

* Fix invalid company name for Wix and change registry keys to match the new string (#21)

* Update more copyright and legal text (#21)

* Update RTF files format (Wordpad generated those) (#21)

* update license text in RTF files (#21)
We lost the blue link text in the installer page. Will have to manually re-color all the links later.
2018-06-25 01:42:52 -04:00

91 lines
1.7 KiB
Plaintext

// ClassicExplorer.idl : IDL source for ClassicExplorer
//
// This file will be processed by the MIDL tool to
// produce the type library (ClassicExplorer.tlb) and marshalling code.
import "oaidl.idl";
import "ocidl.idl";
[
object,
uuid(BC4C1B8F-0BDE-4E42-9583-E072B2A28E0D),
dual,
nonextensible,
helpstring("IExplorerBand Interface"),
pointer_default(unique)
]
interface IExplorerBand : IDispatch{
};
[
object,
uuid(6E00B97F-A4D4-4062-98E4-4F66FC96F32F),
dual,
nonextensible,
helpstring("IClassicCopyExt Interface"),
pointer_default(unique)
]
interface IClassicCopyExt : IDispatch{
};
[
object,
uuid(A1678625-A011-4B7C-A1FA-D691E4CDDB79),
dual,
nonextensible,
helpstring("IExplorerBHO Interface"),
pointer_default(unique)
]
interface IExplorerBHO : IDispatch{
};
[
object,
uuid(2576496C-B58A-4995-8878-8B68F9E8D1FC),
dual,
nonextensible,
helpstring("IShareOverlay Interface"),
pointer_default(unique)
]
interface IShareOverlay : IDispatch{
};
[
uuid(BF8D124A-A4E0-402F-8152-4EF377E62586),
version(1.0),
helpstring("ClassicExplorer 1.0 Type Library")
]
library ClassicExplorerLib
{
importlib("stdole2.tlb");
[
uuid(553891B7-A0D5-4526-BE18-D3CE461D6310),
helpstring("ExplorerBand Class")
]
coclass ExplorerBand
{
[default] interface IExplorerBand;
};
[
uuid(8C83ACB1-75C3-45D2-882C-EFA32333491C),
helpstring("ClassicCopyExt Class")
]
coclass ClassicCopyExt
{
[default] interface IClassicCopyExt;
};
[
uuid(449D0D6E-2412-4E61-B68F-1CB625CD9E52),
helpstring("ExplorerBHO Class")
]
coclass ExplorerBHO
{
[default] interface IExplorerBHO;
};
[
uuid(594D4122-1F87-41E2-96C7-825FB4796516),
helpstring("ShareOverlay Class")
]
coclass ShareOverlay
{
[default] interface IShareOverlay;
};
};