//************************************************************************************** // 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,\ 0xDE, 0xAD, 0xBE, 0xEF, 0x08, 0xE8, 0x11, 0xD6, 0xA5, 0xBB, 0x00, 0x05, 0x02, 0x89, 0xEC, 0x9F ) ) // "DEADBEEF-08E8-11D6-A5BB-00050289EC9F" #define CM_IMPL_PLUGIN_BUNDLE_INDENTIFIER "com.yourcompany.FileSampleCM" typedef struct CMPluginImplData { } CMPluginImplData; //command ID - change it and use your command(s) enum { kCMImplCommand = 100 //arbitrary }; #endif //__CMPluginImpl__