Subversion Repositories filter_foundry

Rev

Rev 334 | Rev 442 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 334 Rev 439
Line 16... Line 16...
16
    You should have received a copy of the GNU General Public License
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
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
18
    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19
*/
19
*/
20
 
20
 
-
 
21
#ifndef SCRIPTING_H_
-
 
22
#define SCRIPTING_H_
-
 
23
 
21
/* Portions Copyright 1993 - 1999 Adobe Systems Incorporated */
24
/* Portions Copyright 1993 - 1999 Adobe Systems Incorporated */
22
/* All Rights Reserved.                                      */
25
/* All Rights Reserved.                                      */
23
 
26
 
24
#include <stddef.h>                     // Standard definitions.
27
#include <stddef.h>                     // Standard definitions.
25
//#include <Types.h>                    // Standard types.
28
//#include <Types.h>                    // Standard types.
Line 197... Line 200...
197
#define PIGetStr(token, value) \
200
#define PIGetStr(token, value) \
198
        Reader->getStringProc(token, value)
201
        Reader->getStringProc(token, value)
199
       
202
       
200
#define PIPutStr(token, key, value) \
203
#define PIPutStr(token, key, value) \
201
        Writer->putStringProc(token, key, value)
204
        Writer->putStringProc(token, key, value)
-
 
205
 
-
 
206
#endif