The R Project SVN R

Rev

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

Rev 56862 Rev 56863
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.
-
 
188
     */
187
     */
189
#if R_USE_PROTOTYPES
188
#if R_USE_PROTOTYPES
190
    void (*activate)(const pDevDesc );
189
    void (*activate)(const pDevDesc );
191
#else
190
#else
192
    void (*activate)();
191
    void (*activate)();
Line 260... Line 259...
260
     * Not all device types will do anything.
259
     * Not all device types will do anything.
261
     * An example is ...
260
     * An example is ...
262
     *
261
     *
263
     * static void X11_Deactivate(pDevDesc dd)
262
     * static void X11_Deactivate(pDevDesc dd)
264
     *
263
     *
265
     * As from R 2.14.0 this can be omitted or set to NULL.
-
 
266
     */
264
     */
267
#if R_USE_PROTOTYPES
265
#if R_USE_PROTOTYPES
268
    void (*deactivate)(pDevDesc );
266
    void (*deactivate)(pDevDesc );
269
#else
267
#else
270
    void (*deactivate)();
268
    void (*deactivate)();