//************************************************************************************** // 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, \ 0xFE, 0xED, 0xBA, 0xBE, 0x05, 0x4E, 0x11, 0xD6, 0xB5, 0xDB, 0x00, 0x05, 0x02, 0x89, 0xEC, 0x9F ) ) // "FEEDBABE-054E-11D6-B5DB-00050289EC9F" #define CM_IMPL_PLUGIN_BUNDLE_INDENTIFIER "com.yourcomapny.EmptyCM" typedef struct CMPluginImplData { } CMPluginImplData; //command ID - change it and use your command(s) enum { kCMImplCommand = 100 //arbitrary }; #endif //__CMPluginImpl__