Click here to Skip to main content
15,886,864 members
Articles / Desktop Programming / WTL

SkinX, A framework of a skin plug-in package

Rate me:
Please Sign up or sign in to vote.
4.75/5 (36 votes)
16 May 20047 min read 224K   12.4K   114  
Introduces the framework of a skin plug-in implementation.
// SkinX.idl : IDL source for SkinX.dll
//

// This file will be processed by the MIDL tool to
// produce the type library (SkinX.tlb) and marshalling code.

import "oaidl.idl";
import "ocidl.idl";
	[
		object,
		uuid(2DD4CC30-9D1E-4898-BB36-F0A568FED2B4),
	
		helpstring("ISkinX Interface"),
		pointer_default(unique)
	]
	interface ISkinX : IUnknown
	{
		[helpstring("Install Skin hook")] HRESULT InstallSkin([in] long lThreadID);
		[helpstring("Uninstall Skin hook")] HRESULT UninstallSkin();
	};

[
	uuid(35AEA244-9499-4764-A7BD-F7EFB2E1D105),
	version(1.0),
	helpstring("SkinX 1.0 Type Library")
]
library SKINXLib
{
	importlib("stdole32.tlb");
	importlib("stdole2.tlb");

	[
		uuid(16542423-5DAD-422C-87A5-629C5BA9B069),
		helpstring("MacSkin Class")
	]
	coclass MacSkin
	{
		[default] interface ISkinX;
	};
};

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
China China
I'm a chinese programer living in Shanghai, currently working for a software company whose main business is to deliver computer based testing. Software simulation for computer based testing and certifications is my main responsibility in this company. Execpt for software development, I like out-door activities and photography. I am willing to make friends in China and all over the world, so contact me if you have anything in common with meSmile | :)

Comments and Discussions