www.pudn.com > smstoaspdd.rar > sms.idl


// sms.idl : IDL source for sms.dll 
// 
 
// This file will be processed by the MIDL tool to 
// produce the type library (sms.tlb) and marshalling code. 
 
import "oaidl.idl"; 
import "ocidl.idl"; 
	 
	[ 
		object, 
		uuid(458C907C-5E2B-4FF6-A463-8CE7E4392005), 
		dual, 
		helpstring("Isend Interface"), 
		pointer_default(unique) 
	] 
	interface Isend : IDispatch 
	{ 
		[id(1), helpstring("method smssend")] HRESULT smssend([in]BSTR tel,[in]BSTR smstest,[in]BSTR userid,[out,retval]int* fanhui); 
	}; 
 
[ 
	uuid(93D957BA-549F-48A8-A35A-CDBFC19CEB66), 
	version(1.0), 
	helpstring("sms 1.0 Type Library") 
] 
library SMSLib 
{ 
	importlib("stdole32.tlb"); 
	importlib("stdole2.tlb"); 
 
	 
	[ 
		uuid(E5582829-4EAA-4C4C-9055-F26EBB00839F), 
		helpstring("send Class") 
	] 
	coclass send 
	{ 
		[default] interface Isend; 
	}; 
};