Edit File by line
/home/barbar84/public_h.../wp-conte.../plugins/sujqvwi/ExeBy/smexe_ro.../usr/include/linux
File: uuid.h
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
[0] Fix | Delete
/*
[1] Fix | Delete
* UUID/GUID definition
[2] Fix | Delete
*
[3] Fix | Delete
* Copyright (C) 2010, Intel Corp.
[4] Fix | Delete
* Huang Ying <ying.huang@intel.com>
[5] Fix | Delete
*
[6] Fix | Delete
* This program is free software; you can redistribute it and/or
[7] Fix | Delete
* modify it under the terms of the GNU General Public License version
[8] Fix | Delete
* 2 as published by the Free Software Foundation;
[9] Fix | Delete
*
[10] Fix | Delete
* This program is distributed in the hope that it will be useful,
[11] Fix | Delete
* but WITHOUT ANY WARRANTY; without even the implied warranty of
[12] Fix | Delete
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
[13] Fix | Delete
* GNU General Public License for more details.
[14] Fix | Delete
*/
[15] Fix | Delete
[16] Fix | Delete
#ifndef _LINUX_UUID_H_
[17] Fix | Delete
#define _LINUX_UUID_H_
[18] Fix | Delete
[19] Fix | Delete
#include <linux/types.h>
[20] Fix | Delete
[21] Fix | Delete
typedef struct {
[22] Fix | Delete
__u8 b[16];
[23] Fix | Delete
} guid_t;
[24] Fix | Delete
[25] Fix | Delete
#define GUID_INIT(a, b, c, d0, d1, d2, d3, d4, d5, d6, d7) \
[26] Fix | Delete
((guid_t) \
[27] Fix | Delete
{{ (a) & 0xff, ((a) >> 8) & 0xff, ((a) >> 16) & 0xff, ((a) >> 24) & 0xff, \
[28] Fix | Delete
(b) & 0xff, ((b) >> 8) & 0xff, \
[29] Fix | Delete
(c) & 0xff, ((c) >> 8) & 0xff, \
[30] Fix | Delete
(d0), (d1), (d2), (d3), (d4), (d5), (d6), (d7) }})
[31] Fix | Delete
[32] Fix | Delete
/* backwards compatibility, don't use in new code */
[33] Fix | Delete
typedef guid_t uuid_le;
[34] Fix | Delete
#define UUID_LE(a, b, c, d0, d1, d2, d3, d4, d5, d6, d7) \
[35] Fix | Delete
GUID_INIT(a, b, c, d0, d1, d2, d3, d4, d5, d6, d7)
[36] Fix | Delete
#define NULL_UUID_LE \
[37] Fix | Delete
UUID_LE(0x00000000, 0x0000, 0x0000, 0x00, 0x00, 0x00, 0x00, \
[38] Fix | Delete
0x00, 0x00, 0x00, 0x00)
[39] Fix | Delete
[40] Fix | Delete
#endif /* _LINUX_UUID_H_ */
[41] Fix | Delete
[42] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function