/rusxmms/librcc

To get this branch, use:
bzr branch http://suren.me/webbzr/rusxmms/librcc

« back to all changes in this revision

Viewing changes to src/rccxml.c

  • Committer: Suren A. Chilingaryan
  • Date: 2014-06-12 17:03:18 UTC
  • Revision ID: csa@dside.dyndns.org-20140612170318-268tcqj2i99rfbgr
Mingw compatibility fixes by trialuser

Show diffs side-by-side

added added

removed removed

Lines of Context:
340
340
    if (!config) return -1;
341
341
 
342
342
    sprintf(config,"%s/.rcc/",rcc_home_dir);
 
343
#ifdef _WIN32
 
344
    mkdir(config);
 
345
#else
343
346
    mkdir(config, 00755);
 
347
#endif
344
348
    
345
349
    sprintf(config,"%s/.rcc/%s.xml",rcc_home_dir,name);
346
350
    fd = open(config, O_CREAT|O_RDWR,00644);