Comments
Loading Dream Comments...
You must be logged in to write a comment - Log In
ArtistA beautiful purple-haired woman wearing a long purple velvet ankle-length dress with flouncy sleeves and purple suede high heels. She is cleaning a window.
The MS-Windows version of ::SHE+ILA:: (MEOW -- My Emulator On Windows) now does COM (Component Object Model), allowing it to control such MS-Windows apps as MSWMP (Media Player) and OCX's (ActiveX Controls).
Examples :
iFoo <!:: "FAB00EEBABE-0000-EEEE-BABE-65028086"; // CoCreateInstance of object with GUID
Alternatively :
iFoo <!:: $FAB00EEBABE0000EEEEBABE65028086; // Ditto with hexadecimal integer as GUID
iMyInterface <?:: ($0000000002040000EEEEBABE65028086, iFoo); // QueryInterface of object iFoo for given $0000....8086 interface (e.g. iDispatch);
iFoo ++; // AddRef;
iFoo--; // Release;
iFoo.MyMethodName (Params); // Dispatch Invoke or Dual Interface Method Call;
An exception is thrown in each case if the COM operation fails, catchable with {? ... blah ... ?}