aboutsummaryrefslogtreecommitdiff
path: root/include/mingw.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* win32: add strptime()Nguyễn Thái Ngọc Duy2010-09-101-1/+1
|
* win32: add utimes and fix utime(file,NULL)Nguyễn Thái Ngọc Duy2010-09-101-1/+1
|
* win32: Replace rename() (WHY?)Nguyễn Thái Ngọc Duy2010-09-101-0/+2
|
* win32: Work around for dup2Nguyễn Thái Ngọc Duy2010-09-101-0/+2
| | | | Original dup2() does not return the fdto.
* win32: Replace stat/lstatNguyễn Thái Ngọc Duy2010-09-101-1/+11
|
* win32: Replace open/fopen to support /dev/nullNguyễn Thái Ngọc Duy2010-09-101-0/+4
|
* win32: add next_path_sep()Nguyễn Thái Ngọc Duy2010-09-101-0/+4
|
* win32: add shell script and internal applet execution to spawn* and exec*Nguyễn Thái Ngọc Duy2010-09-101-0/+10
| | | | | | Most of this was extracted from commit e56b799d6ad8afba4168fffa7218d44c041a72d2 in Git repository.
* win32: Support certain ANSI sequences on cmd.exeNguyễn Thái Ngọc Duy2010-09-101-0/+11
| | | | | | | | | | | | | | | | | | | | | | | | Support sequences are mostly color ones. This was extracted from commit e56b799d6ad8afba4168fffa7218d44c041a72d2 in Git repository. Changes from original version: > diff --git a/home/pclouds/w/git/compat/winansi.c b/tmp/winansi2.c > index 44dc293..e2e7010 100644 > --- a/home/pclouds/w/git/compat/winansi.c > +++ b/tmp/winansi2.c > @@ -2,8 +2,9 @@ > * Copyright 2008 Peter Harris <git@peter.is-a-geek.org> > */ > > +#include "libbb.h" > #include <windows.h> > -#include "../git-compat-util.h" > +#undef PACKED > > /* > Functions to be wrapped:
* win32: add unlink()Nguyễn Thái Ngọc Duy2010-09-101-0/+2
|
* win32: add getenv(), setenv(), unsetenv() and clearenv()Nguyễn Thái Ngọc Duy2010-09-101-4/+4
| | | | clearenv() is not supported yet.
* win32: add poll()Nguyễn Thái Ngọc Duy2010-09-101-1/+1
| | | | Only works for pipes, as commented in the source code.
* win32: add fcntl()Nguyễn Thái Ngọc Duy2010-09-101-1/+1
|
* win32: add waitpid()Nguyễn Thái Ngọc Duy2010-09-101-1/+1
|
* win32: add mkdir()Nguyễn Thái Ngọc Duy2010-09-101-1/+1
|
* win32: add realpath()Nguyễn Thái Ngọc Duy2010-09-101-1/+1
|
* win32: add strsep()Nguyễn Thái Ngọc Duy2010-09-101-1/+1
|
* win32: add link()Nguyễn Thái Ngọc Duy2010-09-101-1/+1
|
* win32: add signal routines and SIGALRM supportNguyễn Thái Ngọc Duy2010-09-101-1/+3
| | | | | | The implementation for SIGALRM only because Git needs it (I think for progress display or something). Probably not hurt having it. Although the only thing needed here are stubs.
* win32: add getpwuid()Nguyễn Thái Ngọc Duy2010-09-101-1/+1
|
* win32: add localtime_r()Nguyễn Thái Ngọc Duy2010-09-101-1/+1
|
* win32: add gmtime_r()Nguyễn Thái Ngọc Duy2010-09-101-1/+1
|
* win32: add pipe()Nguyễn Thái Ngọc Duy2010-09-101-1/+1
|
* win32: add mkstemp()Nguyễn Thái Ngọc Duy2010-09-101-1/+1
|
* win32: add sleep()Nguyễn Thái Ngọc Duy2010-09-101-1/+1
|
* win32: add mingw.hNguyễn Thái Ngọc Duy2010-09-101-0/+295
This file is like libbb.h for MinGW port.