Ignore:
Timestamp:
Apr 13, 2004, 4:17:17 PM (21 years ago)
Author:
sandervl
Message:

updates

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/win/winbase.h

    r10483 r10579  
    554554#define GPTR                (GMEM_FIXED | GMEM_ZEROINIT)
    555555
     556#define GlobalLRUNewest(h)  ((HANDLE)(h))
     557#define GlobalLRUOldest(h)  ((HANDLE)(h))
     558#define GlobalDiscard(h)    (GlobalReAlloc((h),0,GMEM_MOVEABLE))
     559
     560#define INVALID_ATOM        ((ATOM)0)
     561#define MAXINTATOM          0xc000
     562#define MAKEINTATOMA(atom)  ((LPCSTR)((ULONG_PTR)((WORD)(atom))))
     563#define MAKEINTATOMW(atom)  ((LPCWSTR)((ULONG_PTR)((WORD)(atom))))
     564#ifndef MAKEINTATOM //bird: it's in windef.h too for us.
     565#define MAKEINTATOM  WINELIB_NAME_AW(MAKEINTATOM)
     566#endif
    556567
    557568typedef struct tagMEMORYSTATUS
     
    25462557#define     FindFirstVolume WINELIB_NAME_AW(FindFirstVolume)
    25472558
    2548 BOOL   WINAPI FindNextVolumeA(HANDLE hFindVolume, LPTSTR lpszVolumeName, 
     2559BOOL   WINAPI FindNextVolumeA(HANDLE hFindVolume, LPTSTR lpszVolumeName,
    25492560                              DWORD cchBufferLength);
    2550 BOOL   WINAPI FindNextVolumeW(HANDLE hFindVolume, LPWSTR lpszVolumeName, 
     2561BOOL   WINAPI FindNextVolumeW(HANDLE hFindVolume, LPWSTR lpszVolumeName,
    25512562                              DWORD cchBufferLength);
    25522563#define     FindNextVolume WINELIB_NAME_AW(FindNextVolume)
     
    25542565BOOL   WINAPI FindVolumeClose(HANDLE hFindVolume);
    25552566
    2556 HANDLE WINAPI FindFirstVolumeMountPointA(LPTSTR lpszRootPathName, 
     2567HANDLE WINAPI FindFirstVolumeMountPointA(LPTSTR lpszRootPathName,
    25572568                                         LPTSTR lpszVolumeMountPoint,
    25582569                                         DWORD cchBufferLength);
    2559 HANDLE WINAPI FindFirstVolumeMountPointW(LPWSTR lpszRootPathName, 
     2570HANDLE WINAPI FindFirstVolumeMountPointW(LPWSTR lpszRootPathName,
    25602571                                         LPWSTR lpszVolumeMountPoint,
    25612572                                         DWORD cchBufferLength);
Note: See TracChangeset for help on using the changeset viewer.