Subversion Repositories filter_foundry

Rev

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

Rev Author Line No. Line
2 toby 1
/*
18 toby 2
    This file is part of "Filter Foundry", a filter plugin for Adobe Photoshop
171 dmarschall 3
    Copyright (C) 2003-2019 Toby Thain, toby@telegraphics.com.au
2 toby 4
 
5
    This program is free software; you can redistribute it and/or modify
114 dmarschall 6
    it under the terms of the GNU General Public License as published by
2 toby 7
    the Free Software Foundation; either version 2 of the License, or
8
    (at your option) any later version.
9
 
10
    This program is distributed in the hope that it will be useful,
11
    but WITHOUT ANY WARRANTY; without even the implied warranty of
12
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
    GNU General Public License for more details.
14
 
114 dmarschall 15
    You should have received a copy of the GNU General Public License
2 toby 16
    along with this program; if not, write to the Free Software
17
    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18
*/
19
 
20
VENDORID, LC(k,i,n,d), NULLID, 4L, LC(8,B,F,M),	/* Filter module */
21
VENDORID, LC(v,e,r,s), NULLID, 4L, latestFilterSubVersion,latestFilterVersion, /* Version Number */
114 dmarschall 22
 
23
#ifdef _WIN64
164 dmarschall 24
    VENDORID, LC(8,6,6,4), NULLID, 12L, "PluginMain\0\0",  /* Entrypoint Name (Long Word padded C String) */
114 dmarschall 25
#else
164 dmarschall 26
    VENDORID, LC(w,x,8,6), NULLID, 12L, "PluginMain\0\0",  /* Entrypoint Name (Long Word padded C String) */
114 dmarschall 27
#endif
28
 
164 dmarschall 29
VENDORID, LC(m,o,d,e), NULLID, 4L, /* first 2 bytes:  */ flagSupportsGrayScale|flagSupportsIndexedColor|flagSupportsRGBColor|flagSupportsCMYKColor|flagSupportsHSLColor|flagSupportsHSBColor|flagSupportsMultichannel,
30
                                   /* second 2 bytes: */ flagSupportsDuotone|flagSupportsLABColor,
2 toby 31
/* FilterCaseInfo - in all cases:
32
	   inStraightData,
33
	   outStraightData,
34
	   doNotWriteOutsideSelection,
35
	   doesNotFilterLayerMasks,
36
	   worksWithBlankData,
37
	   doNotCopySourceToDestination */
38
VENDORID, LC(f,i,c,i), NULLID, 28L,
39
	"\001\001\003\000","\001\001\003\000","\001\001\003\000","\001\001\003\000",
97 toby 40
	"\001\001\003\000","\001\001\003\000","\001\001\003\000",
41
 
42
/* HasTerminology { plugInClassID, plugInEventID, AETE_ID, vendorName " " plugInName }, */
164 dmarschall 43
VENDORID, LC(h,s,t,m), NULLID, 44L, /* = 3*4 + 2 + sizeof(c string) + padding */
97 toby 44
	0L,								/* version */
45
	LC(f,i,F,o),					/* Class ID, always required.  Can be Suite ID. */
46
	LC(f,i,F,o),					/* Event ID, or typeNULL if not Filter/Color Picker/Selection. */
164 dmarschall 47
	AETE_ID,						/* Dictionary ('AETE') resource ID. (only 2 bytes long!) */
97 toby 48
	"Telegraphics FilterFoundry\0\0\0\0" /* Unique scope string, C format, long padded.
164 dmarschall 49
											Always required in Photoshop 5.0 and later. */