//************************************************************************************** // Filename: CMPluginImpl.h // Part of Contextual Menu Workshop by Abracode Inc. // http://free.abracode.com/cmworkshop/ // Copyright © 2002-2003 Abracode, Inc. All rights reserved. // // Description: // //************************************************************************************** #ifndef __CMPluginImpl__ #define __CMPluginImpl__ //concrete plugin implementation constants //you must change these #define kCMImplPluginFactoryID ( CFUUIDGetConstantUUIDWithBytes( NULL, \ 0x85, 0xA9, 0x36, 0x42, 0x05, 0xE5, 0x11, 0xD6, 0xA8, 0xD8, 0x00, 0x05, 0x02, 0x89, 0xEC, 0x9F ) ) // " 85A93642-05E5-11D6-A8D8-00050289EC9F" #define CM_IMPL_PLUGIN_BUNDLE_INDENTIFIER "com.abracode.BinJugglerCM" typedef struct CMPluginImplData { } CMPluginImplData; //command ID - change it and use your command(s) enum { kEncodeDecodeCommand = 100 //arbitrary }; #endif //__CMPluginImpl__