Changeset 9336 for trunk/include


Ignore:
Timestamp:
Oct 8, 2002, 11:49:08 AM (23 years ago)
Author:
sandervl
Message:

Updates for shared critical sections

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/odincrt.h

    r9334 r9336  
    1414        ULONG   hmtxLock;
    1515        ULONG   Reserved;
     16        LONG    CreationCount;
    1617} CRITICAL_SECTION_OS2, *PCRITICAL_SECTION_OS2;
    1718
    1819ULONG WIN32API DosDeleteCriticalSection(CRITICAL_SECTION_OS2 *);
    1920ULONG WIN32API DosEnterCriticalSection(CRITICAL_SECTION_OS2 *, ULONG ulTimeout = SEM_INDEFINITE_WAIT);
    20 ULONG WIN32API DosInitializeCriticalSection(CRITICAL_SECTION_OS2 *, char *pszSemName);
     21ULONG WIN32API DosInitializeCriticalSection(CRITICAL_SECTION_OS2 *, char *pszSemName, BOOL fShared = FALSE);
    2122ULONG WIN32API DosAccessCriticalSection(CRITICAL_SECTION_OS2 *, char *pszSemName);
    2223ULONG WIN32API DosLeaveCriticalSection(CRITICAL_SECTION_OS2 *);
Note: See TracChangeset for help on using the changeset viewer.