~ubuntu-branches/ubuntu/quantal/vice/quantal

« back to all changes in this revision

Viewing changes to src/arch/os2/mousedrv.c

  • Committer: Bazaar Package Importer
  • Author(s): Laszlo Boszormenyi (GCS)
  • Date: 2009-03-31 00:37:15 UTC
  • mfrom: (1.1.7 upstream) (9.1.2 sid)
  • Revision ID: james.westby@ubuntu.com-20090331003715-i5yisvcfv7mgz3eh
Tags: 2.1.dfsg-1
* New major upstream release (closes: #495937).
* Add desktop files (closes: #501181).

Show diffs side-by-side

added added

removed removed

Lines of Context:
33
33
#include "fullscr.h"
34
34
#include "cmdline.h"
35
35
#include "resources.h"
36
 
 
 
36
#include "translate.h"
37
37
 
38
38
static int hide_mouseptr;
39
39
static int visible=TRUE;
76
76
/* ----------------------------------------------------------- */
77
77
 
78
78
static const cmdline_option_t cmdline_options[] = {
79
 
    { "-hidemouseptr", SET_RESOURCE, 0, NULL, NULL,
80
 
      "HideMousePtr", (resource_value_t) 1, NULL,
81
 
      "Enable hiding of mouse pointer inside the window" },
82
 
    { "+hidemouseptr", SET_RESOURCE, 0, NULL, NULL,
83
 
      "HideMousePtr", (resource_value_t) 0, NULL,
84
 
      "Disable hiding of mouse pointer inside the window" },
 
79
    { "-hidemouseptr", SET_RESOURCE, 0,
 
80
      NULL, NULL, "HideMousePtr", (resource_value_t) 1,
 
81
      USE_PARAM_STRING, USE_DESCRIPTION_ID,
 
82
      IDCLS_UNUSED, IDCLS_UNUSED,
 
83
      NULL, "Enable hiding of mouse pointer inside the window" },
 
84
    { "+hidemouseptr", SET_RESOURCE, 0,
 
85
      NULL, NULL, "HideMousePtr", (resource_value_t) 0,
 
86
      USE_PARAM_STRING, USE_DESCRIPTION_ID,
 
87
      IDCLS_UNUSED, IDCLS_UNUSED,
 
88
      NULL, "Disable hiding of mouse pointer inside the window" },
85
89
    { NULL }
86
90
};
87
91