Ignore:
Timestamp:
Jul 28, 2001, 8:48:38 PM (24 years ago)
Author:
sandervl
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tools/install/odininst.cpp

    r6390 r6399  
    1 /* $Id: odininst.cpp,v 1.7 2001-07-23 19:15:50 sandervl Exp $ */
     1/* $Id: odininst.cpp,v 1.8 2001-07-28 18:48:10 sandervl Exp $ */
    22/*
    33 * Odin WarpIn installation app
     
    2525 *      - x:\Program Files
    2626 *      - x:\Program Files\Common Files
     27 *  - WINDOWSDIR\Temp
    2728 *  - and a minimal system registry
    2829 *
     
    774775    CreateDirectory(dirname, NULL);
    775776    RegSetValueEx(hkey,"Start Menu",0,REG_SZ, (LPBYTE)dirname, strlen(dirname)+1);
     777
     778    //Temp directory
     779    strcpy(dirname, InternalGetWindowsDirectory());
     780    strcat(dirname, "\\Temp");
     781    CreateDirectory(dirname, NULL);
     782
    776783    //Programs
    777784    strcpy(dirname, InternalGetWindowsDirectory());
Note: See TracChangeset for help on using the changeset viewer.