File: vmsruby_private.c

package info (click to toggle)
ruby1.8 1.8.7.72-3lenny1
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 26,548 kB
  • ctags: 38,250
  • sloc: ruby: 242,252; ansic: 142,934; yacc: 5,862; sh: 3,450; lisp: 1,626; tcl: 949; makefile: 393; sed: 129; xml: 122; awk: 36; cpp: 28; asm: 25; perl: 18; python: 6
file content (52 lines) | stat: -rw-r--r-- 993 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#include "vmsruby_private.h"
#include <stdio.h>
#include <stdlib.h>

void _vmsruby_init(void)
{
    _vmsruby_set_switch("DECC$WLS", "TRUE");
}


#include <starlet.h>
#include <string.h>
#include <descrip.h>
#include <lnmdef.h>

struct item_list_3 {
    short buflen;
    short itmcod;
    void *bufadr;
    void *retlen;
};

long _vmsruby_set_switch(char *name, char *value)
{
    long status;
    struct item_list_3 itemlist[20];
    int i;

    i = 0;
    itemlist[i].itmcod = LNM$_STRING;
    itemlist[i].buflen = strlen(value);
    itemlist[i].bufadr = value;
    itemlist[i].retlen = NULL;
    i++;
    itemlist[i].itmcod = 0;
    itemlist[i].buflen = 0;

    $DESCRIPTOR(TABLE_d, "LNM$PROCESS");
    $DESCRIPTOR(lognam_d, "");

    lognam_d.dsc$a_pointer = name;
    lognam_d.dsc$w_length  = strlen(name);

    status = sys$crelnm (
             	 0, 
             	 &TABLE_d, 
             	 &lognam_d, 
             	 0,  /* usermode */
             	 itemlist);

    return status;
}