Changeset 12 in cheroxy


Ignore:
Timestamp:
10/23/12 13:46:18 (11 years ago)
Author:
cheese
Message:

#1 add mutex to windows project and fix typos

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/_win/cheroxy/cheroxy.vcproj

    r4 r12  
    186186            </File>
    187187            <File
     188                RelativePath="..\..\src\CRXMutex.cpp"
     189                >
     190            </File>
     191            <File
    188192                RelativePath="..\..\src\CRXSocket.cpp"
    189193                >
     
    212216            </File>
    213217            <File
     218                RelativePath="..\..\include\CRXMutex.h"
     219                >
     220            </File>
     221            <File
    214222                RelativePath="..\..\include\CRXSocket.h"
    215223                >
  • trunk/src/CRXMutex.cpp

    r10 r12  
    2222#ifdef _WIN32
    2323    if ((mMutex = ::CreateMutexA (NULL, FALSE, NULL)) == NULL)
    24         return GetLastError ();;
     24        return GetLastError ();
    2525    else
    2626        return 0;
Note: See TracChangeset for help on using the changeset viewer.