Subversion Repositories filter_foundry

Rev

Rev 184 | Rev 192 | 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
106 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
 
106 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
#include "PIResDefines.h"
21
#include "PIActions.h"
22
 
23
#include "ui.h"
24
#include "version.h"
25
 
26
#define LC(a,b,c,d)		#d, #c, #b, #a
27
 
28
#define VENDORID LC(8,B,I,M)
29
#define NULLID 0L
30
 
133 dmarschall 31
/* Note: make_win.c writes language 0. So, this should be language 0, too, otherwise the standalone filter would have 2 languages for this resource. */
32
LANGUAGE LANG_NEUTRAL,SUBLANG_NEUTRAL
2 toby 33
16000  PiPL  DISCARDABLE
34
BEGIN
35
	0x0001, 		/* Reserved (for Photoshop) */
36
	0L, 			/* kCurrentPiPLVersion */
37
	8L, 			/* Property Count */
106 dmarschall 38
 
164 dmarschall 39
	VENDORID, LC(c,a,t,g), NULLID, 16L, "\014Telegraphics\0\0\0", /* PString */
40
	VENDORID, LC(n,a,m,e), NULLID, 20L, "\021Filter Foundry...\0\0", /* PString */
178 dmarschall 41
 
42
/* HasTerminology { plugInClassID, plugInEventID, AETE_ID, vendorName " " plugInName }, */
43
VENDORID, LC(h,s,t,m), NULLID, 44L, /* = 3*4 + 2 + sizeof(c string) + padding */
44
	0L,								/* version */
45
	LC(F,l,t,r),					/* Class ID, always required.  Can be Suite ID. */
46
	LC(f,i,F,o),					/* Event ID, or typeNULL if not Filter/Color Picker/Selection. */
47
	AETE_ID,						/* Dictionary ('AETE') resource ID. (only 2 bytes long!) */
48
	"Telegraphics FilterFoundry\0\0\0\0" /* Unique scope string, C format, long padded.
49
											Always required in Photoshop 5.0 and later. */
50
 
51
 
2 toby 52
#include "PiPL_body.rc"
106 dmarschall 53
 
2 toby 54
END
55
 
133 dmarschall 56
LANGUAGE LANG_NEUTRAL,SUBLANG_NEUTRAL
2 toby 57
16000  RCDATA  DISCARDABLE
58
BEGIN
59
	0x0001, 		/* Reserved (for Photoshop) */
60
	0L, 			/* kCurrentPiPLVersion */
178 dmarschall 61
	5L, 			/* Property Count */
106 dmarschall 62
 
2 toby 63
#include "PiPL_body.rc"
106 dmarschall 64
 
2 toby 65
END