~ubuntu-branches/debian/squeeze/ghostscript/squeeze

« back to all changes in this revision

Viewing changes to src/zusparam.c

  • Committer: Bazaar Package Importer
  • Author(s): Masayuki Hatta (mhatta)
  • Date: 2009-01-04 12:09:59 UTC
  • mfrom: (16.1.1 sid)
  • Revision ID: james.westby@ubuntu.com-20090104120959-m9lbagj775ucg0h3
Tags: 8.63.dfsg.1-2
libgs-dev: put versioned dependency on libgs8 - closes: #510691

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
   San Rafael, CA  94903, U.S.A., +1(415)492-9861, for further information.
12
12
*/
13
13
 
14
 
/* $Id: zusparam.c 8329 2007-10-28 17:17:47Z alexcher $ */
 
14
/* $Id: zusparam.c 8631 2008-04-09 15:28:45Z ken $ */
15
15
/* User and system parameter operators */
16
16
#include "memory_.h"
17
17
#include "string_.h"
509
509
    i_ctx_p->LockFilePermissions = val;
510
510
    return 0;
511
511
}
 
512
static bool
 
513
current_RenderTTNotdef(i_ctx_t *i_ctx_p)
 
514
{
 
515
    return i_ctx_p->RenderTTNotdef;
 
516
}
 
517
static int
 
518
set_RenderTTNotdef(i_ctx_t *i_ctx_p, bool val)
 
519
{
 
520
    i_ctx_p->RenderTTNotdef = val;
 
521
    return 0;
 
522
}
512
523
static const bool_param_def_t user_bool_params[] =
513
524
{
514
525
    {"AccurateScreens", current_AccurateScreens, set_AccurateScreens},
515
526
    {"UseWTS", current_UseWTS, set_UseWTS},
516
 
    {"LockFilePermissions", current_LockFilePermissions, set_LockFilePermissions}
 
527
    {"LockFilePermissions", current_LockFilePermissions, set_LockFilePermissions},
 
528
    {"RenderTTNotdef", current_RenderTTNotdef, set_RenderTTNotdef}
517
529
};
518
530
 
519
531
/* The user parameter set */