summaryrefslogtreecommitdiff
path: root/win32/php_stdint.h
Commit message (Collapse)AuthorAgeFilesLines
* Drop unnecessary stdint and inttypes header checksGeorge Peter Banyard2020-04-221-265/+0
| | | | | | | | These are always available as of C99. Closes GH-5323 Co-authored-by: "Christoph M. Becker" <cmbecker69@gmx.de>
* Remove local variablesPeter Kokot2019-02-031-9/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | This patch removes the so called local variables defined per file basis for certain editors to properly show tab width, and similar settings. These are mainly used by Vim and Emacs editors yet with recent changes the once working definitions don't work anymore in Vim without custom plugins or additional configuration. Neither are these settings synced across the PHP code base. A simpler and better approach is EditorConfig and fixing code using some code style fixing tools in the future instead. This patch also removes the so called modelines for Vim. Modelines allow Vim editor specifically to set some editor configuration such as syntax highlighting, indentation style and tab width to be set in the first line or the last 5 lines per file basis. Since the php test files have syntax highlighting already set in most editors properly and EditorConfig takes care of the indentation settings, this patch removes these as well for the Vim 6.0 and newer versions. With the removal of local variables for certain editors such as Emacs and Vim, the footer is also probably not needed anymore when creating extensions using ext_skel.php script. Additionally, Vim modelines for setting php syntax and some editor settings has been removed from some *.phpt files. All these are mostly not relevant for phpt files neither work properly in the middle of the file.
* vim folds and modelinesAnatol Belski2017-07-041-0/+9
|
* trailing whitespace removalStanislav Malyshev2015-01-101-10/+10
|
* fix commentAnatol Belski2014-11-061-1/+1
|
* Various fixes to allow support for new VS2014 featuresChris Tankersley2014-11-051-3/+12
| | | | | | | | - Added some typeof checks to handle JS errors introduced in VS2014 - Added VS2014 to the list of compilers - Changed to use stdint.h if we are using VS2014 or higher - Skip defining timespec if we're using VS2014 or higher - Moved u_char typedef out to always be defined regardless of VS version
* use stddef.h definitions for uintptr_t and intptr_tAnatol Belski2014-08-281-7/+2
|
* Merge remote-tracking branch 'php/master'Anatol Belski2014-08-211-0/+4
|\
| * avoid clash when stdint.h was included after win32/php_stdint.hAnatol Belski2014-08-211-0/+4
| |
* | first shot on merging the core fro the int64 branchAnatol Belski2014-08-161-0/+2
|/
* wrap int8_t and int16_t with #ifdef to avoid possible clashesAnatol Belski2014-08-071-0/+4
|
* MFT: VC10 build supportKalle Sommer Nielsen2009-12-031-1/+6
|
* - revert last commit and fix inlinePierre Joye2009-05-041-1/+2
|
* - a macro will just do it tooPierre Joye2009-05-041-2/+1
|
* - add llabsPierre Joye2009-05-041-0/+2
|
* - prevent redefinitionPierre Joye2009-01-271-0/+10
|
* MFH: Bump copyright year, 3 of 3.Sebastian Bergmann2008-12-311-1/+1
|
* -MFH:Pierre Joye2008-07-281-0/+234
- #45430, windows implementation of crypt is not TS - add Blowfish (using implementation from Solar Designer <solar at openwal dot com>) and extended DES support - Make crypt features portable: - if no crypt_r, php's implemetation is used (all algo and TS), php can't be used with unsafe crypt anymore - if one algo is missing, php's implemetation is used - Windows always use php's implementation - removed old code in windows/