Subversion Repositories filter_foundry

Rev

Rev 513 | Rev 517 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
259 daniel-mar 1
/*
2
    This file is part of "Filter Foundry", a filter plugin for Adobe Photoshop
3
    Copyright (C) 2003-2009 Toby Thain, toby@telegraphics.com.au
4
    Copyright (C) 2018-2021 Daniel Marschall, ViaThinkSoft
5
 
6
    This program is free software; you can redistribute it and/or modify
7
    it under the terms of the GNU General Public License as published by
8
    the Free Software Foundation; either version 2 of the License, or
9
    (at your option) any later version.
10
 
11
    This program is distributed in the hope that it will be useful,
12
    but WITHOUT ANY WARRANTY; without even the implied warranty of
13
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
    GNU General Public License for more details.
15
 
16
    You should have received a copy of the GNU General Public License
17
    along with this program; if not, write to the Free Software
18
    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19
*/
20
 
21
#include "PIResDefines.h"
22
#include "PIActions.h"
23
 
24
#include "ui.h"
25
#include "version.h"
26
 
317 daniel-mar 27
#define LC(a,b,c,d) #d, #c, #b, #a
259 daniel-mar 28
 
29
/* 8BIM = Adobe Photoshop */
30
#define VENDORID LC(8,B,I,M)
31
 
32
#define NULLID 0L
33
 
34
/* Note: make_win.c writes language 0. So, this should be language 0, too,
35
   otherwise the standalone filter would have 2 languages for this resource. */
36
LANGUAGE LANG_NEUTRAL,SUBLANG_NEUTRAL
37
16000  PiPL  DISCARDABLE
38
BEGIN
317 daniel-mar 39
	0x0001,     /* Reserved (for Photoshop) */
40
	0L,         /* kCurrentPiPLVersion */
515 daniel-mar 41
	13L,        /* Property Count */
259 daniel-mar 42
 
317 daniel-mar 43
	VENDORID, LC(c,a,t,g), NULLID, 16L, "\014Telegraphics\0\0\0",    /* PString */
259 daniel-mar 44
	VENDORID, LC(n,a,m,e), NULLID, 20L, "\021Filter Foundry...\0\0", /* PString */
45
 
515 daniel-mar 46
	/* "Component". Values taken from Clouds.8BF */
47
	/* Note: Length 20 must be divisible by 4 */
48
	VENDORID, LC(c,m,p,t), NULLID, 20L, MainComponentVersion, "Filter Foundry\0\0",
49
 
259 daniel-mar 50
	/* HasTerminology { plugInClassID, plugInEventID, AETE_ID, vendorName " " plugInName }, */
51
	VENDORID, LC(h,s,t,m), NULLID, 16L, /* = 3*4 + 2 + sizeof(c string) + padding */
317 daniel-mar 52
	0L,                /* version */
53
	LC(F,l,t,r),       /* Class ID, always required.  Must be eventFilter='Fltr' to show up in "Actions" tab. */
54
	LC(f,i,F,o),       /* Event ID, or typeNULL if not Filter/Color Picker/Selection. */
55
	AETE_ID,           /* Dictionary ('AETE') resource ID. (only 2 bytes long!) */
259 daniel-mar 56
	/*"Telegraphics FilterFoundry\0\0\0\0"*/
57
	/* Unique scope string, C format, long padded. If set, the plugin will only communicate with the host (Photoshop), not with AppleScript. */
317 daniel-mar 58
	/* Beginning with 1.7.0.2, we accept AppleScript, since the AETE keys are now randomly chosen for each standalone plugin. */
259 daniel-mar 59
	"\0\0"
60
 
402 daniel-mar 61
	#ifdef _WIN64
62
		VENDORID, LC(8,6,6,4), NULLID, 12L, "PluginMain\0\0",  /* Entrypoint Name (Long Word padded C String) */
63
	#else
64
		VENDORID, LC(w,x,8,6), NULLID, 12L, "PluginMain\0\0",  /* Entrypoint Name (Long Word padded C String) */
65
	#endif
259 daniel-mar 66
 
402 daniel-mar 67
	#include "PiPL_body.rc"
259 daniel-mar 68
 
69
END
70
 
71
LANGUAGE LANG_NEUTRAL,SUBLANG_NEUTRAL
402 daniel-mar 72
16032  TPLT  DISCARDABLE
259 daniel-mar 73
BEGIN
317 daniel-mar 74
	0x0001,       /* Reserved (for Photoshop) */
75
	0L,           /* kCurrentPiPLVersion */
515 daniel-mar 76
	9L,           /* Property Count */
402 daniel-mar 77
	VENDORID, LC(w,x,8,6), NULLID, 12L, "PluginMain\0\0",  /* Entrypoint Name (Long Word padded C String) */
78
	#include "PiPL_body.rc"
79
END
259 daniel-mar 80
 
402 daniel-mar 81
LANGUAGE LANG_NEUTRAL,SUBLANG_NEUTRAL
82
16064  TPLT  DISCARDABLE
83
BEGIN
84
	0x0001,       /* Reserved (for Photoshop) */
85
	0L,           /* kCurrentPiPLVersion */
515 daniel-mar 86
	9L,           /* Property Count */
402 daniel-mar 87
	VENDORID, LC(8,6,6,4), NULLID, 12L, "PluginMain\0\0",  /* Entrypoint Name (Long Word padded C String) */
88
	#include "PiPL_body.rc"
259 daniel-mar 89
END