Subversion Repositories filter_foundry

Rev

Rev 186 | Rev 206 | 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
192 daniel-mar 3
    Copyright (C) 2003-2009 Toby Thain, toby@telegraphics.com.au
4
    Copyright (C) 2018-2019 Daniel Marschall, ViaThinkSoft
2 toby 5
 
6
    This program is free software; you can redistribute it and/or modify
106 dmarschall 7
    it under the terms of the GNU General Public License as published by
2 toby 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
 
106 dmarschall 16
    You should have received a copy of the GNU General Public License
2 toby 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
 
27
#define LC(a,b,c,d)		#d, #c, #b, #a
28
 
29
#define VENDORID LC(8,B,I,M)
30
#define NULLID 0L
31
 
133 dmarschall 32
/* 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. */
33
LANGUAGE LANG_NEUTRAL,SUBLANG_NEUTRAL
2 toby 34
16000  PiPL  DISCARDABLE
35
BEGIN
36
	0x0001, 		/* Reserved (for Photoshop) */
37
	0L, 			/* kCurrentPiPLVersion */
38
	8L, 			/* Property Count */
106 dmarschall 39
 
164 dmarschall 40
	VENDORID, LC(c,a,t,g), NULLID, 16L, "\014Telegraphics\0\0\0", /* PString */
41
	VENDORID, LC(n,a,m,e), NULLID, 20L, "\021Filter Foundry...\0\0", /* PString */
178 dmarschall 42
 
43
/* HasTerminology { plugInClassID, plugInEventID, AETE_ID, vendorName " " plugInName }, */
44
VENDORID, LC(h,s,t,m), NULLID, 44L, /* = 3*4 + 2 + sizeof(c string) + padding */
45
	0L,								/* version */
46
	LC(F,l,t,r),					/* Class ID, always required.  Can be Suite ID. */
47
	LC(f,i,F,o),					/* Event ID, or typeNULL if not Filter/Color Picker/Selection. */
48
	AETE_ID,						/* Dictionary ('AETE') resource ID. (only 2 bytes long!) */
49
	"Telegraphics FilterFoundry\0\0\0\0" /* Unique scope string, C format, long padded.
50
											Always required in Photoshop 5.0 and later. */
51
 
52
 
2 toby 53
#include "PiPL_body.rc"
106 dmarschall 54
 
2 toby 55
END
56
 
133 dmarschall 57
LANGUAGE LANG_NEUTRAL,SUBLANG_NEUTRAL
2 toby 58
16000  RCDATA  DISCARDABLE
59
BEGIN
60
	0x0001, 		/* Reserved (for Photoshop) */
61
	0L, 			/* kCurrentPiPLVersion */
178 dmarschall 62
	5L, 			/* Property Count */
106 dmarschall 63
 
2 toby 64
#include "PiPL_body.rc"
106 dmarschall 65
 
2 toby 66
END