Ignore:
Timestamp:
Feb 9, 2002, 1:45:14 PM (24 years ago)
Author:
sandervl
Message:

logging updates

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/kernel32/mailslot.cpp

    r6646 r7849  
    1 /* $Id: mailslot.cpp,v 1.2 2001-09-05 12:57:59 bird Exp $
     1/* $Id: mailslot.cpp,v 1.3 2002-02-09 12:45:13 sandervl Exp $
    22 *
    33 * Win32 mailslot APIs
     
    4343 *****************************************************************************/
    4444
    45 ODINFUNCTION4(HANDLE, CreateMailslotA, LPCSTR, lpName, DWORD, nMaxMessageSize,
    46                                        DWORD, lReadTimeout,
    47                                        LPSECURITY_ATTRIBUTES, lpSecurityAttributes)
     45HANDLE WIN32API CreateMailslotA(LPCSTR lpName, DWORD nMaxMessageSize,
     46                                DWORD lReadTimeout,
     47                                LPSECURITY_ATTRIBUTES lpSecurityAttributes)
    4848{
    4949  return HMCreateMailslotA(lpName, nMaxMessageSize, lReadTimeout, lpSecurityAttributes);
     
    7272 *****************************************************************************/
    7373
    74 ODINFUNCTION4(HANDLE, CreateMailslotW, LPCWSTR, lpName, DWORD, nMaxMessageSize,
    75                                        DWORD, lReadTimeout,
    76                                        LPSECURITY_ATTRIBUTES, lpSecurityAttributes)
     74HANDLE WIN32API CreateMailslotW(LPCWSTR lpName, DWORD nMaxMessageSize,
     75                                DWORD lReadTimeout,
     76                                LPSECURITY_ATTRIBUTES lpSecurityAttributes)
    7777{
    7878  HANDLE rc;
     
    102102 *****************************************************************************/
    103103
    104 ODINFUNCTION5(BOOL, GetMailslotInfo, HANDLE,  hMailslot,
    105                                     LPDWORD, lpMaxMessageSize,
    106                                     LPDWORD, lpNextSize,
    107                                     LPDWORD, lpMessageCount,
    108                                     LPDWORD, lpReadTimeout)
     104BOOL WIN32API GetMailslotInfo(HANDLE  hMailslot,
     105                              LPDWORD lpMaxMessageSize,
     106                              LPDWORD lpNextSize,
     107                              LPDWORD lpMessageCount,
     108                              LPDWORD lpReadTimeout)
    109109{
    110110  return HMGetMailslotInfo(hMailslot, lpMaxMessageSize, lpNextSize,
     
    126126 *****************************************************************************/
    127127
    128 ODINFUNCTION2(BOOL, SetMailslotInfo,HANDLE, hMailslot, DWORD, dwReadTimeout)
     128BOOL WIN32API SetMailslotInfo(HANDLE hMailslot, DWORD dwReadTimeout)
    129129{
    130130  return HMSetMailslotInfo(hMailslot, dwReadTimeout);
Note: See TracChangeset for help on using the changeset viewer.