mirror of
https://gitlab.winehq.org/wine/wine.git
synced 2025-08-28 10:13:55 +02:00
72 lines
2.2 KiB
Text
72 lines
2.2 KiB
Text
/*
|
|
* Copyright 2022 Alex Henrie
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
|
*/
|
|
|
|
cpp_quote("#define FOFX_NOSKIPJUNCTIONS 0x00010000")
|
|
cpp_quote("#define FOFX_PREFERHARDLINK 0x00020000")
|
|
cpp_quote("#define FOFX_SHOWELEVATIONPROMPT 0x00040000")
|
|
cpp_quote("#define FOFX_RECYCLEONDELETE 0x00080000")
|
|
cpp_quote("#define FOFX_EARLYFAILURE 0x00100000")
|
|
cpp_quote("#define FOFX_PRESERVEFILEEXTENSIONS 0x00200000")
|
|
cpp_quote("#define FOFX_KEEPNEWERFILE 0x00400000")
|
|
cpp_quote("#define FOFX_NOCOPYHOOKS 0x00800000")
|
|
cpp_quote("#define FOFX_NOMINIMIZEBOX 0x01000000")
|
|
cpp_quote("#define FOFX_MOVEACLSACROSSVOLUMES 0x02000000")
|
|
cpp_quote("#define FOFX_DONTDISPLAYSOURCEPATH 0x04000000")
|
|
cpp_quote("#define FOFX_DONTDISPLAYDESTPATH 0x08000000")
|
|
cpp_quote("#define FOFX_REQUIREELEVATION 0x10000000")
|
|
cpp_quote("#define FOFX_ADDUNDORECORD 0x20000000")
|
|
cpp_quote("#define FOFX_COPYASDOWNLOAD 0x40000000")
|
|
cpp_quote("#define FOFX_DONTDISPLAYLOCATIONS 0x80000000")
|
|
|
|
[
|
|
uuid(56f9f44f-f74c-4e38-99bc-9f3ebd3d696a)
|
|
]
|
|
library ShellCoreObjects
|
|
{
|
|
[
|
|
uuid(208d2c60-3aea-1069-a2d7-08002b30309d)
|
|
]
|
|
coclass NetworkPlaces
|
|
{
|
|
interface IShellFolder2;
|
|
}
|
|
|
|
[
|
|
uuid(00021400-0000-0000-c000-000000000046)
|
|
]
|
|
coclass ShellDesktop
|
|
{
|
|
interface IShellFolder2;
|
|
}
|
|
|
|
[
|
|
uuid(f3364ba0-65b9-11ce-a9ba-00aa004ae837)
|
|
]
|
|
coclass ShellFSFolder
|
|
{
|
|
interface IShellFolder2;
|
|
}
|
|
|
|
[
|
|
uuid(9ac9fbe1-e0a2-4ad6-b4ee-e212013ea917)
|
|
]
|
|
coclass ShellItem
|
|
{
|
|
interface IShellItem2;
|
|
}
|
|
}
|