2020-08-18 19:12:29 +03:00
/*
2020-10-15 03:15:42 +03:00
* Copyright ( C ) by Michael Schuster < michael @ schuster . ms >
2020-08-18 19:12:29 +03:00
*
* This program is free software ; you can redistribute it and / or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation ; either version 2 of the License , or
* ( at your option ) any later version .
*
* This program is distributed in the hope that it will be useful , but
* WITHOUT ANY WARRANTY ; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE . See the GNU General Public License
* for more details .
*/
# pragma once
2020-08-18 22:42:31 +03:00
// IMPORTANT: Keep these constants in sync with WinShellExtConstants.wxi.in
2020-08-18 20:11:08 +03:00
2020-08-18 19:12:29 +03:00
// Context Menu
# define CONTEXT_MENU_GUID L"@WIN_SHELLEXT_CONTEXT_MENU_GUID@"
2020-08-18 20:11:08 +03:00
# define CONTEXT_MENU_REGKEY_NAME L"@APPLICATION_SHORTNAME@ContextMenuHandler"
# define CONTEXT_MENU_DESCRIPTION L"@APPLICATION_SHORTNAME@ context menu handler"
2020-08-18 19:12:29 +03:00
// Overlays
# define OVERLAY_GUID_ERROR L"@WIN_SHELLEXT_OVERLAY_GUID_ERROR@"
# define OVERLAY_GUID_OK L"@WIN_SHELLEXT_OVERLAY_GUID_OK@"
# define OVERLAY_GUID_OK_SHARED L"@WIN_SHELLEXT_OVERLAY_GUID_OK_SHARED@"
# define OVERLAY_GUID_SYNC L"@WIN_SHELLEXT_OVERLAY_GUID_SYNC@"
# define OVERLAY_GUID_WARNING L"@WIN_SHELLEXT_OVERLAY_GUID_WARNING@"
2020-08-18 20:11:08 +03:00
//
2023-06-02 14:55:08 +03:00
// Preceding spaces are intended, two spaces to put us ahead of the competition :/
2020-08-18 20:11:08 +03:00
//
// There is a limit in Windows (oh wonder^^) so that only the first 15 extensions get invoked, this is why to use that dirty little trick to get ahead ;)
// See: https://docs.microsoft.com/en-us/windows/win32/shell/context-menu-handlers?redirectedfrom=MSDN#employing-the-verb-selection-model
//
2021-07-14 16:15:02 +03:00
# define OVERLAY_NAME_ERROR L" @APPLICATION_SHORTNAME@Error"
# define OVERLAY_NAME_OK L" @APPLICATION_SHORTNAME@OK"
# define OVERLAY_NAME_OK_SHARED L" @APPLICATION_SHORTNAME@OKShared"
# define OVERLAY_NAME_SYNC L" @APPLICATION_SHORTNAME@Sync"
# define OVERLAY_NAME_WARNING L" @APPLICATION_SHORTNAME@Warning"
2020-08-18 20:11:08 +03:00
# define OVERLAY_DESCRIPTION L"@APPLICATION_SHORTNAME@ overlay handler"
2020-08-18 20:31:11 +03:00
// NCUtil
# define UTIL_PIPE_APP_NAME L"@APPLICATION_EXECUTABLE@"