Help for this page

Select Code to Download


  1. or download this
    1222:         pwbuffer = PerlDir_mapW(wbuffer);
    ...
    1228:         path = PerlDir_mapA(path);
    
  2. or download this
    #ifdef WIN32
    #define PerlDir_mapA(dir)        dir
    #define PerlDir_mapW(dir)        dir
    #endif
    
  3. or download this
    #ifdef WIN32
    #define PerlDir_mapA(dir)                    \
    ...
    #define PerlDir_mapW(dir)                    \
        (*PL_Dir->pMapPathW)(PL_Dir, (dir))
    #endif