local.h 1.12 KB
Newer Older
Alexandre Julliard's avatar
Alexandre Julliard committed
1 2 3 4 5 6
/*
 * Local heap declarations
 *
 * Copyright 1995 Alexandre Julliard
 */

Alexandre Julliard's avatar
Alexandre Julliard committed
7 8
#ifndef __WINE_LOCAL_H
#define __WINE_LOCAL_H
Alexandre Julliard's avatar
Alexandre Julliard committed
9 10 11 12 13 14 15

#include "wintypes.h"

  /* These function are equivalent to the Local* API functions, */
  /* excepted that they need DS as the first parameter. This    */
  /* allows managing several heaps from the emulation library.  */

Alexandre Julliard's avatar
Alexandre Julliard committed
16 17 18 19 20 21 22 23 24 25
extern HLOCAL16 LOCAL_Alloc( HANDLE16 ds, UINT16 flags, WORD size );
extern HLOCAL16 LOCAL_ReAlloc( HANDLE16 ds, HLOCAL16 handle,
                               WORD size, UINT16 flags );
extern HLOCAL16 LOCAL_Free( HANDLE16 ds, HLOCAL16 handle );
extern HLOCAL16 LOCAL_Handle( HANDLE16 ds, WORD addr );
extern UINT16 LOCAL_Size( HANDLE16 ds, HLOCAL16 handle );
extern UINT16 LOCAL_Flags( HANDLE16 ds, HLOCAL16 handle );
extern UINT16 LOCAL_HeapSize( HANDLE16 ds );
extern UINT16 LOCAL_CountFree( HANDLE16 ds );
extern LPSTR LOCAL_Lock( HANDLE16 ds, HLOCAL16 handle );
Alexandre Julliard's avatar
Alexandre Julliard committed
26
extern SEGPTR LOCAL_LockSegptr( HANDLE16 ds, HLOCAL16 handle );
Alexandre Julliard's avatar
Alexandre Julliard committed
27
extern BOOL16 LOCAL_Unlock( HANDLE16 ds, HLOCAL16 handle );
Alexandre Julliard's avatar
Alexandre Julliard committed
28
extern WORD LOCAL_Compact( HANDLE16 ds, UINT16 minfree, UINT16 flags );
Alexandre Julliard's avatar
Alexandre Julliard committed
29

Alexandre Julliard's avatar
Alexandre Julliard committed
30
#endif  /* __WINE_LOCAL_H */