home *** CD-ROM | disk | FTP | other *** search
/ Solo Programadores 22 / SOLO_22.iso / packages / win32ada / data.z / win32-memory.ads < prev    next >
Encoding:
Text File  |  1996-03-15  |  2.8 KB  |  67 lines

  1. -- $Source: /home/harp/1/proto/monoBANK/winnt/win32-memory.ads,v $ 
  2. -- $Revision: 1.7 $ $Date: 96/03/15 12:53:38 $ $Author: stm $ 
  3. -- See end of file for Copyright (c) information.
  4.  
  5. with Win32;
  6. with Win32.Strings;
  7.  
  8. package Win32.Memory is
  9.     
  10.     function memccpy(dest : Win32.PVOID;
  11.                      src  : Win32.PCVOID;
  12.                      ch   : Win32.INT;
  13.                      count: Win32.UINT)
  14.                          return Win32.PVOID
  15.                          renames Win32.Strings.memccpy;     -- memory.h:53
  16.  
  17.     function memchr(buf  : Win32.PCVOID;
  18.                     ch   : Win32.INT;
  19.                     count: Win32.Strings.size_t)
  20.                         return Win32.PVOID
  21.                         renames Win32.Strings.memchr;       -- memory.h:54
  22.  
  23.     function memcmp(buf1 : Win32.PCVOID;
  24.                     buf2 : Win32.PCVOID;
  25.                     count: Win32.Strings.size_t)
  26.                         return Win32.INT
  27.                         renames Win32.Strings.memcmp;       -- memory.h:55
  28.  
  29.     function memcpy(dest : Win32.PVOID;
  30.                     src  : Win32.PCVOID;
  31.                     count: Win32.Strings.size_t)
  32.                         return Win32.PVOID
  33.                         renames Win32.Strings.memcpy;       -- memory.h:56
  34.  
  35.     function memicmp(buf1 : Win32.PCVOID;
  36.                      buf2 : Win32.PCVOID;
  37.                      count: Win32.UINT)
  38.                          return Win32.INT
  39.                          renames Win32.Strings.memicmp;     -- memory.h:57
  40.  
  41.     function memset(dest : Win32.PVOID;
  42.                     ch   : Win32.INT;
  43.                     count: Win32.Strings.size_t)
  44.                         return Win32.PVOID
  45.                         renames Win32.Strings.memset;       -- memory.h:58
  46.  
  47. -------------------------------------------------------------------------------
  48. --
  49. -- THIS FILE AND ANY ASSOCIATED DOCUMENTATION IS PROVIDED WITHOUT CHARGE
  50. -- "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING
  51. -- BUT NOT LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR
  52. -- FITNESS FOR A PARTICULAR PURPOSE.  The user assumes the entire risk as to
  53. -- the accuracy and the use of this file.  This file may be used, copied,
  54. -- modified and distributed only by licensees of Microsoft Corporation's
  55. -- WIN32 Software Development Kit in accordance with the terms of the 
  56. -- licensee's End-User License Agreement for Microsoft Software for the
  57. -- WIN32 Development Kit.
  58. --
  59. -- Copyright (c) Intermetrics, Inc. 1995
  60. -- Portions (c) 1985-1994 Microsoft Corporation with permission.
  61. -- Microsoft is a registered trademark and Windows and Windows NT are
  62. -- trademarks of Microsoft Corporation.
  63. --
  64. -------------------------------------------------------------------------------
  65.  
  66. end Win32.Memory;
  67.