Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
3ae8d588
Commit
3ae8d588
authored
Mar 19, 2010
by
Christian Costa
Committed by
Alexandre Julliard
Mar 19, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
attrib.exe: Add stubbed command.
parent
5e3e2ca7
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
52 additions
and
0 deletions
+52
-0
configure
configure
+5
-0
configure.ac
configure.ac
+1
-0
Makefile.in
programs/attrib/Makefile.in
+12
-0
attrib.c
programs/attrib/attrib.c
+34
-0
No files found.
configure
View file @
3ae8d588
...
...
@@ -16026,6 +16026,10 @@ test "x$enable_loader" != xno && wine_fn_append_file ALL_TOP_DIRS "loader"
wine_fn_config_makefile programs
"Make.rules
\$
(MAKEDEP)"
test
"x
$enable_programs
"
!=
xno
&&
wine_fn_append_file ALL_TOP_DIRS
"programs"
wine_fn_config_program attrib
wine_fn_config_makefile programs/attrib
"programs/Makeprog.rules
\$
(MAKEDEP)"
test
"x
$enable_attrib
"
!=
xno
&&
wine_fn_append_file ALL_PROGRAM_DIRS
"programs/attrib"
&&
wine_fn_append_file ALL_INSTALL_DIRS
"programs/attrib"
wine_fn_config_program cacls
wine_fn_config_makefile programs/cacls
"programs/Makeprog.rules
\$
(MAKEDEP)"
test
"x
$enable_cacls
"
!=
xno
&&
wine_fn_append_file ALL_PROGRAM_DIRS
"programs/cacls"
&&
wine_fn_append_file ALL_INSTALL_DIRS
"programs/cacls"
...
...
@@ -17470,6 +17474,7 @@ do
"libs/wpp/Makefile") CONFIG_FILES="
$CONFIG_FILES
libs/wpp/Makefile" ;;
"loader/Makefile") CONFIG_FILES="
$CONFIG_FILES
loader/Makefile" ;;
"programs/Makefile") CONFIG_FILES="
$CONFIG_FILES
programs/Makefile" ;;
"programs/attrib/Makefile") CONFIG_FILES="
$CONFIG_FILES
programs/attrib/Makefile" ;;
"programs/cacls/Makefile") CONFIG_FILES="
$CONFIG_FILES
programs/cacls/Makefile" ;;
"programs/clock/Makefile") CONFIG_FILES="
$CONFIG_FILES
programs/clock/Makefile" ;;
"programs/cmd/Makefile") CONFIG_FILES="
$CONFIG_FILES
programs/cmd/Makefile" ;;
...
...
configure.ac
View file @
3ae8d588
...
...
@@ -2642,6 +2642,7 @@ WINE_CONFIG_MAKEFILE([libs/wine/Makefile],[Make.rules])
WINE_CONFIG_MAKEFILE([libs/wpp/Makefile],[Make.rules])
WINE_CONFIG_MAKEFILE([loader/Makefile],[Make.rules],[ALL_TOP_DIRS])
WINE_CONFIG_MAKEFILE([programs/Makefile],[Make.rules],[ALL_TOP_DIRS])
WINE_CONFIG_PROGRAM(attrib,[ALL_PROGRAM_DIRS,ALL_INSTALL_DIRS])
WINE_CONFIG_PROGRAM(cacls,[ALL_PROGRAM_DIRS,ALL_INSTALL_DIRS])
WINE_CONFIG_PROGRAM(clock,[ALL_PROGRAM_DIRS,ALL_INSTALL_DIRS])
WINE_CONFIG_PROGRAM(cmd,[ALL_PROGRAM_DIRS,ALL_INSTALL_DIRS])
...
...
programs/attrib/Makefile.in
0 → 100644
View file @
3ae8d588
EXTRADEFS
=
-DWINE_NO_UNICODE_MACROS
TOPSRCDIR
=
@top_srcdir@
TOPOBJDIR
=
../..
SRCDIR
=
@srcdir@
VPATH
=
@srcdir@
MODULE
=
attrib.exe
APPMODE
=
-mconsole
-municode
IMPORTS
=
kernel32
C_SRCS
=
attrib.c
@MAKE_PROG_RULES@
programs/attrib/attrib.c
0 → 100644
View file @
3ae8d588
/*
* Copyright 2010 Christian Costa
*
* 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
*/
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
attrib
);
int
wmain
(
int
argc
,
WCHAR
*
argv
[])
{
int
i
;
WINE_FIXME
(
"attrib.exe is currently only a stub command
\n
"
);
WINE_FIXME
(
"cmdline:"
);
for
(
i
=
0
;
i
<
argc
;
i
++
)
WINE_FIXME
(
" %s"
,
wine_dbgstr_w
(
argv
[
i
]));
WINE_FIXME
(
"
\n
"
);
return
0
;
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment