Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Havar
asn1c
Commits
4cca5092
Commit
4cca5092
authored
May 27, 2005
by
Lev Walkin
Browse files
win32 compatibility
parent
18797bc1
Changes
1
Hide whitespace changes
Inline
Side-by-side
skeletons/asn_system.h
View file @
4cca5092
...
...
@@ -25,6 +25,18 @@
#define vsnprintf _vsnprintf
#define alloca(size) _alloca(size)
#ifdef _MSC_VER
/* MSVS.Net */
#define ssize_t SSIZE_T
typedef
char
int8_t
;
typedef
short
int16_t
;
typedef
int
int32_t
;
typedef
unsigned
char
uint8_t
;
typedef
unsigned
short
uint16_t
;
typedef
unsigned
int
uint32_t
;
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
#endif
/* _MSC_VER */
#else
/* !WIN32 */
#include <inttypes.h>
/* C99 specifies this file */
...
...
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