Reactos

[FS_REC][VFATFS] Update headers per our current coding style

No code changes. Addendum to 14c39362 and 6d65da93.

+117 -212
+1 -1
drivers/filesystems/fs_rec/fatx.c
··· 2 2 * PROJECT: ReactOS File System Recognizer 3 3 * LICENSE: GPL-2.0-or-later (https://spdx.org/licenses/GPL-2.0-or-later) 4 4 * PURPOSE: FATX Recognizer 5 - * COPYRIGHT: Copyright 2022 Hervé Poussineau 5 + * COPYRIGHT: Copyright 2022 Hervé Poussineau <hpoussin@reactos.org> 6 6 */ 7 7 8 8 /* INCLUDES *****************************************************************/
+2 -2
drivers/filesystems/vfatfs/CMakeLists.txt
··· 33 33 add_importlibs(vfatfs ntoskrnl hal) 34 34 add_pch(vfatfs vfat.h SOURCE) 35 35 if(SARCH STREQUAL "xbox") 36 - add_cd_file(TARGET vfatfs DESTINATION reactos/system32/drivers NO_CAB FOR all) 37 - add_registry_inf(vfatfs_reg.inf) 36 + add_cd_file(TARGET vfatfs DESTINATION reactos/system32/drivers NO_CAB FOR all) 37 + add_registry_inf(vfatfs_reg.inf) 38 38 endif()
+4 -6
drivers/filesystems/vfatfs/blockdev.c
··· 1 1 /* 2 - * COPYRIGHT: See COPYING in the top level directory 3 - * PROJECT: ReactOS kernel 4 - * FILE: drivers/fs/vfat/blockdev.c 5 - * PURPOSE: Temporary sector reading support 6 - * PROGRAMMER: David Welch (welch@cwcom.net) 7 - * UPDATE HISTORY: 2 + * PROJECT: VFAT Filesystem 3 + * LICENSE: GPL-2.0-or-later (https://spdx.org/licenses/GPL-2.0-or-later) 4 + * PURPOSE: Temporary sector reading support 5 + * COPYRIGHT: Copyright 1999-2001 David Welch <welch@cwcom.net> 8 6 */ 9 7 10 8 /* INCLUDES *****************************************************************/
+5 -6
drivers/filesystems/vfatfs/cleanup.c
··· 1 1 /* 2 - * COPYRIGHT: See COPYING in the top level directory 3 - * PROJECT: ReactOS kernel 4 - * FILE: drivers/fs/vfat/cleanup.c 5 - * PURPOSE: VFAT Filesystem 6 - * PROGRAMMER: Jason Filby (jasonfilby@yahoo.com) 7 - * Pierre Schweitzer (pierre@reactos.org) 2 + * PROJECT: VFAT Filesystem 3 + * LICENSE: GPL-2.0-or-later (https://spdx.org/licenses/GPL-2.0-or-later) 4 + * PURPOSE: Cleanup routines 5 + * COPYRIGHT: Copyright 1998 Jason Filby <jasonfilby@yahoo.com> 6 + * Copyright 2014-2018 Pierre Schweitzer <pierre@reactos.org> 8 7 */ 9 8 10 9 /* INCLUDES *****************************************************************/
+5 -6
drivers/filesystems/vfatfs/close.c
··· 1 1 /* 2 - * COPYRIGHT: See COPYING in the top level directory 3 - * PROJECT: ReactOS kernel 4 - * FILE: drivers/filesystems/vfatfs/close.c 5 - * PURPOSE: VFAT Filesystem 6 - * PROGRAMMER: Jason Filby (jasonfilby@yahoo.com) 7 - * Pierre Schweitzer (pierre@reactos.org) 2 + * PROJECT: VFAT Filesystem 3 + * LICENSE: GPL-2.0-or-later (https://spdx.org/licenses/GPL-2.0-or-later) 4 + * PURPOSE: File close routines 5 + * COPYRIGHT: Copyright 1998 Jason Filby <jasonfilby@yahoo.com> 6 + * Copyright 2014-2018 Pierre Schweitzer <pierre@reactos.org> 8 7 */ 9 8 10 9 /* INCLUDES *****************************************************************/
+5 -23
drivers/filesystems/vfatfs/create.c
··· 1 1 /* 2 - * ReactOS kernel 3 - * Copyright (C) 1998, 1999, 2000, 2001 ReactOS Team 4 - * 5 - * This program is free software; you can redistribute it and/or modify 6 - * it under the terms of the GNU General Public License as published by 7 - * the Free Software Foundation; either version 2 of the License, or 8 - * (at your option) any later version. 9 - * 10 - * This program is distributed in the hope that it will be useful, 11 - * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 - * GNU General Public License for more details. 14 - * 15 - * You should have received a copy of the GNU General Public License along 16 - * with this program; if not, write to the Free Software Foundation, Inc., 17 - * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. 18 - */ 19 - /* 20 - * PROJECT: ReactOS kernel 21 - * FILE: drivers/filesystems/vfatfs/create.c 22 - * PURPOSE: VFAT Filesystem 23 - * PROGRAMMER: Jason Filby (jasonfilby@yahoo.com) 24 - * Pierre Schweitzer (pierre@reactos.org) 2 + * PROJECT: VFAT Filesystem 3 + * LICENSE: GPL-2.0-or-later (https://spdx.org/licenses/GPL-2.0-or-later) 4 + * PURPOSE: File creation routines 5 + * COPYRIGHT: Copyright 1998 Jason Filby <jasonfilby@yahoo.com> 6 + * Copyright 2010-2019 Pierre Schweitzer <pierre@reactos.org> 25 7 */ 26 8 27 9 /* INCLUDES *****************************************************************/
+7 -8
drivers/filesystems/vfatfs/dir.c
··· 1 1 /* 2 - * COPYRIGHT: See COPYING in the top level directory 3 - * PROJECT: ReactOS kernel 4 - * FILE: drivers/fs/vfat/dir.c 5 - * PURPOSE: VFAT Filesystem : directory control 6 - * UPDATE HISTORY: 7 - 19-12-1998 : created 8 - 9 - */ 2 + * PROJECT: VFAT Filesystem 3 + * LICENSE: GPL-2.0-or-later (https://spdx.org/licenses/GPL-2.0-or-later) 4 + * PURPOSE: Directory control 5 + * COPYRIGHT: Copyright 1998 Jason Filby <jasonfilby@yahoo.com> 6 + * Copyright 2004-2005 Hervé Poussineau <hpoussin@reactos.org> 7 + * Copyright 2012-2018 Pierre Schweitzer <pierre@reactos.org> 8 + */ 10 9 11 10 /* INCLUDES *****************************************************************/ 12 11
+6 -7
drivers/filesystems/vfatfs/direntry.c
··· 1 1 /* 2 - * FILE: DirEntry.c 3 - * PURPOSE: Routines to manipulate directory entries. 4 - * COPYRIGHT: See COPYING in the top level directory 5 - * PROJECT: ReactOS kernel 6 - * PROGRAMMER: Jason Filby (jasonfilby@yahoo.com) 7 - * Rex Jolliff (rex@lvcablemodem.com) 8 - * Herve Poussineau (reactos@poussine.freesurf.fr) 2 + * PROJECT: VFAT Filesystem 3 + * LICENSE: GPL-2.0-or-later (https://spdx.org/licenses/GPL-2.0-or-later) 4 + * PURPOSE: Routines to manipulate directory entries 5 + * COPYRIGHT: Copyright 1998 Jason Filby <jasonfilby@yahoo.com> 6 + * Copyright 2001 Rex Jolliff <rex@lvcablemodem.com> 7 + * Copyright 2004-2022 Hervé Poussineau <hpoussin@reactos.org> 9 8 */ 10 9 11 10 /* ------------------------------------------------------- INCLUDES */
+6 -8
drivers/filesystems/vfatfs/dirwr.c
··· 1 1 /* 2 - * COPYRIGHT: See COPYING in the top level directory 3 - * PROJECT: ReactOS kernel 4 - * FILE: drivers/filesystems/vfatfs/dirwr.c 5 - * PURPOSE: VFAT Filesystem : write in directory 6 - * PROGRAMMER: Rex Jolliff (rex@lvcablemodem.com) 7 - * Herve Poussineau (reactos@poussine.freesurf.fr) 8 - * Pierre Schweitzer (pierre@reactos.org) 9 - * 2 + * PROJECT: VFAT Filesystem 3 + * LICENSE: GPL-2.0-or-later (https://spdx.org/licenses/GPL-2.0-or-later) 4 + * PURPOSE: Write in directory 5 + * COPYRIGHT: Copyright 1999-2001 Rex Jolliff <rex@lvcablemodem.com> 6 + * Copyright 2004-2008 Hervé Poussineau <hpoussin@reactos.org> 7 + * Copyright 2010-2018 Pierre Schweitzer <pierre@reactos.org> 10 8 */ 11 9 12 10 /* INCLUDES *****************************************************************/
+4 -22
drivers/filesystems/vfatfs/ea.c
··· 1 1 /* 2 - * ReactOS kernel 3 - * Copyright (C) 1998, 1999, 2000, 2001 ReactOS Team 4 - * 5 - * This program is free software; you can redistribute it and/or modify 6 - * it under the terms of the GNU General Public License as published by 7 - * the Free Software Foundation; either version 2 of the License, or 8 - * (at your option) any later version. 9 - * 10 - * This program is distributed in the hope that it will be useful, 11 - * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 - * GNU General Public License for more details. 14 - * 15 - * You should have received a copy of the GNU General Public License along 16 - * with this program; if not, write to the Free Software Foundation, Inc., 17 - * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. 18 - */ 19 - /* 20 - * PROJECT: ReactOS kernel 21 - * FILE: drivers/fs/vfat/ea.c 22 - * PURPOSE: VFAT Filesystem 23 - * PROGRAMMER: Jason Filby (jasonfilby@yahoo.com) 2 + * PROJECT: VFAT Filesystem 3 + * LICENSE: GPL-2.0-or-later (https://spdx.org/licenses/GPL-2.0-or-later) 4 + * PURPOSE: Extended attributes handlers 5 + * COPYRIGHT: Copyright 1998 Jason Filby <jasonfilby@yahoo.com> 24 6 */ 25 7 26 8 /* INCLUDES *****************************************************************/
+5 -6
drivers/filesystems/vfatfs/fastio.c
··· 1 1 /* 2 - * FILE: drivers/filesystems/vfatfs/fastio.c 3 - * PURPOSE: Fast IO routines. 4 - * COPYRIGHT: See COPYING in the top level directory 5 - * PROJECT: ReactOS kernel 6 - * PROGRAMMER: Herve Poussineau (hpoussin@reactos.org) 7 - * Pierre Schweitzer (pierre@reactos.org) 2 + * PROJECT: VFAT Filesystem 3 + * LICENSE: GPL-2.0-or-later (https://spdx.org/licenses/GPL-2.0-or-later) 4 + * PURPOSE: Fast IO routines 5 + * COPYRIGHT: Copyright 2005 Hervé Poussineau <hpoussin@reactos.org> 6 + * Copyright 2015-2018 Pierre Schweitzer <pierre@reactos.org> 8 7 */ 9 8 10 9 #include "vfat.h"
+5 -7
drivers/filesystems/vfatfs/fat.c
··· 1 1 /* 2 - * COPYRIGHT: See COPYING in the top level directory 3 - * PROJECT: ReactOS kernel 4 - * FILE: drivers/filesystems/vfatfs/fat.c 5 - * PURPOSE: VFAT Filesystem 6 - * PROGRAMMER: Jason Filby (jasonfilby@yahoo.com) 7 - * Pierre Schweitzer (pierre@reactos.org) 8 - * 2 + * PROJECT: VFAT Filesystem 3 + * LICENSE: GPL-2.0-or-later (https://spdx.org/licenses/GPL-2.0-or-later) 4 + * PURPOSE: File Allocation Table routines 5 + * COPYRIGHT: Copyright 1998 Jason Filby <jasonfilby@yahoo.com> 6 + * Copyright 2015-2018 Pierre Schweitzer <pierre@reactos.org> 9 7 */ 10 8 11 9 /* INCLUDES *****************************************************************/
+8 -9
drivers/filesystems/vfatfs/fcb.c
··· 1 1 /* 2 - * FILE: drivers/filesystems/vfatfs/fcb.c 3 - * PURPOSE: Routines to manipulate FCBs. 4 - * COPYRIGHT: See COPYING in the top level directory 5 - * PROJECT: ReactOS kernel 6 - * PROGRAMMER: Jason Filby (jasonfilby@yahoo.com) 7 - * Rex Jolliff (rex@lvcablemodem.com) 8 - * Herve Poussineau (reactos@poussine.freesurf.fr) 9 - * Pierre Schweitzer (pierre@reactos.org) 10 - */ 2 + * PROJECT: VFAT Filesystem 3 + * LICENSE: GPL-2.0-or-later (https://spdx.org/licenses/GPL-2.0-or-later) 4 + * PURPOSE: Routines to manipulate FCBs 5 + * COPYRIGHT: Copyright 1998 Jason Filby <jasonfilby@yahoo.com> 6 + * Copyright 2001 Rex Jolliff <rex@lvcablemodem.com> 7 + * Copyright 2005-2022 Hervé Poussineau <hpoussin@reactos.org> 8 + * Copyright 2008-2018 Pierre Schweitzer <pierre@reactos.org> 9 + */ 11 10 12 11 /* ------------------------------------------------------- INCLUDES */ 13 12
+6 -8
drivers/filesystems/vfatfs/finfo.c
··· 1 1 /* 2 - * COPYRIGHT: See COPYING in the top level directory 3 - * PROJECT: ReactOS kernel 4 - * FILE: drivers/filesystems/vfatfs/finfo.c 5 - * PURPOSE: VFAT Filesystem 6 - * PROGRAMMER: Jason Filby (jasonfilby@yahoo.com) 7 - * Herve Poussineau (reactos@poussine.freesurf.fr) 8 - * Pierre Schweitzer (pierre@reactos.org) 9 - * 2 + * PROJECT: VFAT Filesystem 3 + * LICENSE: GPL-2.0-or-later (https://spdx.org/licenses/GPL-2.0-or-later) 4 + * PURPOSE: File information routines 5 + * COPYRIGHT: Copyright 1998 Jason Filby <jasonfilby@yahoo.com> 6 + * Copyright 2005 Hervé Poussineau <hpoussin@reactos.org> 7 + * Copyright 2008-2018 Pierre Schweitzer <pierre@reactos.org> 10 8 */ 11 9 12 10 /* INCLUDES *****************************************************************/
+5 -5
drivers/filesystems/vfatfs/flush.c
··· 1 1 /* 2 - * COPYRIGHT: See COPYING in the top level directory 3 - * PROJECT: ReactOS kernel 4 - * FILE: drivers/fs/vfat/flush.c 5 - * PURPOSE: VFAT Filesystem 6 - * PROGRAMMER: 2 + * PROJECT: VFAT Filesystem 3 + * LICENSE: GPL-2.0-or-later (https://spdx.org/licenses/GPL-2.0-or-later) 4 + * PURPOSE: Flushing routines 5 + * COPYRIGHT: Copyright 2004-2013 Eric Kohl <eric.kohl@reactos.org> 6 + * Copyright 2014-2018 Pierre Schweitzer <pierre@reactos.org> 7 7 */ 8 8 9 9 /* INCLUDES *****************************************************************/
+5 -22
drivers/filesystems/vfatfs/fsctl.c
··· 1 1 /* 2 - * ReactOS kernel 3 - * Copyright (C) 2002 ReactOS Team 4 - * 5 - * This program is free software; you can redistribute it and/or modify 6 - * it under the terms of the GNU General Public License as published by 7 - * the Free Software Foundation; either version 2 of the License, or 8 - * (at your option) any later version. 9 - * 10 - * This program is distributed in the hope that it will be useful, 11 - * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 - * GNU General Public License for more details. 14 - * 15 - * You should have received a copy of the GNU General Public License along 16 - * with this program; if not, write to the Free Software Foundation, Inc., 17 - * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. 18 - */ 19 - /* 20 - * COPYRIGHT: See COPYING in the top level directory 21 - * PROJECT: ReactOS kernel 22 - * FILE: drivers/fs/vfat/fsctl.c 23 - * PURPOSE: VFAT Filesystem 2 + * PROJECT: VFAT Filesystem 3 + * LICENSE: GPL-2.0-or-later (https://spdx.org/licenses/GPL-2.0-or-later) 4 + * PURPOSE: Filesystem routines 5 + * COPYRIGHT: Copyright 2002-2013 Eric Kohl <eric.kohl@reactos.org> 6 + * Copyright 2008-2018 Pierre Schweitzer <pierre@reactos.org> 24 7 */ 25 8 26 9 /* INCLUDES *****************************************************************/
+5 -23
drivers/filesystems/vfatfs/iface.c
··· 1 1 /* 2 - * ReactOS kernel 3 - * Copyright (C) 1998, 1999, 2000, 2001 ReactOS Team 4 - * 5 - * This program is free software; you can redistribute it and/or modify 6 - * it under the terms of the GNU General Public License as published by 7 - * the Free Software Foundation; either version 2 of the License, or 8 - * (at your option) any later version. 9 - * 10 - * This program is distributed in the hope that it will be useful, 11 - * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 - * GNU General Public License for more details. 14 - * 15 - * You should have received a copy of the GNU General Public License along 16 - * with this program; if not, write to the Free Software Foundation, Inc., 17 - * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. 18 - */ 19 - /* 20 - * PROJECT: ReactOS kernel 21 - * FILE: drivers/fs/vfat/iface.c 22 - * PURPOSE: VFAT Filesystem 23 - * PROGRAMMER: Jason Filby (jasonfilby@yahoo.com) 24 - * Pierre Schweitzer (pierre@reactos.org) 2 + * PROJECT: VFAT Filesystem 3 + * LICENSE: GPL-2.0-or-later (https://spdx.org/licenses/GPL-2.0-or-later) 4 + * PURPOSE: Driver entry interface 5 + * COPYRIGHT: Copyright 1998 Jason Filby <jasonfilby@yahoo.com> 6 + * Copyright 2010-2018 Pierre Schweitzer <pierre@reactos.org> 25 7 */ 26 8 27 9 /* INCLUDES *****************************************************************/
+5 -6
drivers/filesystems/vfatfs/kdbg.c
··· 1 1 /* 2 - * FILE: drivers/filesystems/vfatfs/kdbg.c 3 - * PURPOSE: KDBG extension. 4 - * COPYRIGHT: See COPYING in the top level directory 5 - * PROJECT: ReactOS kernel 6 - * PROGRAMMER: Pierre Schweitzer (pierre@reactos.org) 7 - */ 2 + * PROJECT: VFAT Filesystem 3 + * LICENSE: GPL-2.0-or-later (https://spdx.org/licenses/GPL-2.0-or-later) 4 + * PURPOSE: KDBG extension 5 + * COPYRIGHT: Copyright 2018 Pierre Schweitzer <pierre@reactos.org> 6 + */ 8 7 9 8 /* ------------------------------------------------------- INCLUDES */ 10 9
+5 -6
drivers/filesystems/vfatfs/misc.c
··· 1 1 /* 2 - * COPYRIGHT: See COPYING in the top level directory 3 - * PROJECT: ReactOS kernel 4 - * FILE: drivers/fs/vfat/misc.c 5 - * PURPOSE: VFAT Filesystem 6 - * PROGRAMMER: 7 - * 2 + * PROJECT: VFAT Filesystem 3 + * LICENSE: GPL-2.0-or-later (https://spdx.org/licenses/GPL-2.0-or-later) 4 + * PURPOSE: Misc routines 5 + * COPYRIGHT: Copyright 1998 Jason Filby <jasonfilby@yahoo.com> 6 + * Copyright 2015-2018 Pierre Schweitzer <pierre@reactos.org> 8 7 */ 9 8 10 9 /* INCLUDES *****************************************************************/
+4 -6
drivers/filesystems/vfatfs/pnp.c
··· 1 1 /* 2 - * COPYRIGHT: See COPYING in the top level directory 3 - * PROJECT: ReactOS kernel 4 - * FILE: drivers/filesystems/vfatfs/pnp.c 5 - * PURPOSE: VFAT Filesystem 6 - * PROGRAMMER: Pierre Schweitzer 7 - * 2 + * PROJECT: VFAT Filesystem 3 + * LICENSE: GPL-2.0-or-later (https://spdx.org/licenses/GPL-2.0-or-later) 4 + * PURPOSE: Plug & Play handlers 5 + * COPYRIGHT: Copyright 2010-2015 Pierre Schweitzer <pierre@reactos.org> 8 6 */ 9 7 10 8 /* INCLUDES *****************************************************************/
+5 -7
drivers/filesystems/vfatfs/rw.c
··· 1 1 /* 2 - * COPYRIGHT: See COPYING in the top level directory 3 - * PROJECT: ReactOS kernel 4 - * FILE: drivers/filesystems/vfatfs/rw.c 5 - * PURPOSE: VFAT Filesystem 6 - * PROGRAMMER: Jason Filby (jasonfilby@yahoo.com) 7 - * Pierre Schweitzer (pierre@reactos.org) 8 - * 2 + * PROJECT: VFAT Filesystem 3 + * LICENSE: GPL-2.0-or-later (https://spdx.org/licenses/GPL-2.0-or-later) 4 + * PURPOSE: Reading and writing routines 5 + * COPYRIGHT: Copyright 1998 Jason Filby <jasonfilby@yahoo.com> 6 + * Copyright 2008-2018 Pierre Schweitzer <pierre@reactos.org> 9 7 */ 10 8 11 9 /* INCLUDES *****************************************************************/
+4 -5
drivers/filesystems/vfatfs/shutdown.c
··· 1 1 /* 2 - * COPYRIGHT: See COPYING in the top level directory 3 - * PROJECT: ReactOS kernel 4 - * FILE: drivers/fs/vfat/shutdown.c 5 - * PURPOSE: VFAT Filesystem 6 - * PROGRAMMER: Eric Kohl 2 + * PROJECT: VFAT Filesystem 3 + * LICENSE: GPL-2.0-or-later (https://spdx.org/licenses/GPL-2.0-or-later) 4 + * PURPOSE: Shutdown handlers 5 + * COPYRIGHT: Copyright 2000-2013 Eric Kohl <eric.kohl@reactos.org> 7 6 */ 8 7 9 8 /* INCLUDES *****************************************************************/
+5 -7
drivers/filesystems/vfatfs/string.c
··· 1 1 /* 2 - * COPYRIGHT: See COPYING in the top level directory 3 - * PROJECT: ReactOS kernel 4 - * FILE: drivers/fs/vfat/string.c 5 - * PURPOSE: VFAT Filesystem 6 - * PROGRAMMERS: Jason Filby (jasonfilby@yahoo.com) 7 - * Doug Lyons (douglyons at douglyons dot com) 8 - * 2 + * PROJECT: VFAT Filesystem 3 + * LICENSE: GPL-2.0-or-later (https://spdx.org/licenses/GPL-2.0-or-later) 4 + * PURPOSE: Volume routines 5 + * COPYRIGHT: Copyright 1998 Jason Filby <jasonfilby@yahoo.com> 6 + * Copyright 2020 Doug Lyons <douglyons@douglyons.com> 9 7 */ 10 8 11 9 /* INCLUDES *****************************************************************/
+5 -6
drivers/filesystems/vfatfs/volume.c
··· 1 1 /* 2 - * COPYRIGHT: See COPYING in the top level directory 3 - * PROJECT: ReactOS kernel 4 - * FILE: drivers/fs/vfat/volume.c 5 - * PURPOSE: VFAT Filesystem 6 - * PROGRAMMER: Jason Filby (jasonfilby@yahoo.com) 7 - * Herve Poussineau (reactos@poussine.freesurf.fr) 2 + * PROJECT: VFAT Filesystem 3 + * LICENSE: GPL-2.0-or-later (https://spdx.org/licenses/GPL-2.0-or-later) 4 + * PURPOSE: Volume routines 5 + * COPYRIGHT: Copyright 1998 Jason Filby <jasonfilby@yahoo.com> 6 + * Copyright 2004-2022 Hervé Poussineau <hpoussin@reactos.org> 8 7 */ 9 8 10 9 /* INCLUDES *****************************************************************/