The R Project SVN R

Rev

Rev 56863 | Rev 56898 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 56863 Rev 56868
Line 182... Line 182...
182
     * The only parameter is a device driver structure.
182
     * The only parameter is a device driver structure.
183
     * An example is ...
183
     * An example is ...
184
     *
184
     *
185
     * static void   X11_Activate(pDevDesc dd);
185
     * static void   X11_Activate(pDevDesc dd);
186
     *
186
     *
-
 
187
     * As from R 2.14.0 this can be omitted or set to NULL.
187
     */
188
     */
188
#if R_USE_PROTOTYPES
189
#if R_USE_PROTOTYPES
189
    void (*activate)(const pDevDesc );
190
    void (*activate)(const pDevDesc );
190
#else
191
#else
191
    void (*activate)();
192
    void (*activate)();
Line 259... Line 260...
259
     * Not all device types will do anything.
260
     * Not all device types will do anything.
260
     * An example is ...
261
     * An example is ...
261
     *
262
     *
262
     * static void X11_Deactivate(pDevDesc dd)
263
     * static void X11_Deactivate(pDevDesc dd)
263
     *
264
     *
-
 
265
     * As from R 2.14.0 this can be omitted or set to NULL.
264
     */
266
     */
265
#if R_USE_PROTOTYPES
267
#if R_USE_PROTOTYPES
266
    void (*deactivate)(pDevDesc );
268
    void (*deactivate)(pDevDesc );
267
#else
269
#else
268
    void (*deactivate)();
270
    void (*deactivate)();