Lines Matching refs:DECLSPEC

457 extern DECLSPEC void *SDLCALL SDL_malloc(size_t size);
458 extern DECLSPEC void *SDLCALL SDL_calloc(size_t nmemb, size_t size);
459 extern DECLSPEC void *SDLCALL SDL_realloc(void *mem, size_t size);
460 extern DECLSPEC void SDLCALL SDL_free(void *mem);
472 extern DECLSPEC void SDLCALL SDL_GetOriginalMemoryFunctions(SDL_malloc_func *malloc_func,
482 extern DECLSPEC void SDLCALL SDL_GetMemoryFunctions(SDL_malloc_func *malloc_func,
492 extern DECLSPEC int SDLCALL SDL_SetMemoryFunctions(SDL_malloc_func malloc_func,
502 extern DECLSPEC int SDLCALL SDL_GetNumAllocations(void);
504 extern DECLSPEC char *SDLCALL SDL_getenv(const char *name);
505 extern DECLSPEC int SDLCALL SDL_setenv(const char *name, const char *value, int overwrite);
508 extern DECLSPEC void SDLCALL SDL_qsort(void *base, size_t nmemb, size_t size, SDL_CompareCallback c…
509 extern DECLSPEC void * SDLCALL SDL_bsearch(const void *key, const void *base, size_t nmemb, size_t …
511 extern DECLSPEC int SDLCALL SDL_abs(int x);
518 extern DECLSPEC int SDLCALL SDL_isalpha(int x);
519 extern DECLSPEC int SDLCALL SDL_isalnum(int x);
520 extern DECLSPEC int SDLCALL SDL_isblank(int x);
521 extern DECLSPEC int SDLCALL SDL_iscntrl(int x);
522 extern DECLSPEC int SDLCALL SDL_isdigit(int x);
523 extern DECLSPEC int SDLCALL SDL_isxdigit(int x);
524 extern DECLSPEC int SDLCALL SDL_ispunct(int x);
525 extern DECLSPEC int SDLCALL SDL_isspace(int x);
526 extern DECLSPEC int SDLCALL SDL_isupper(int x);
527 extern DECLSPEC int SDLCALL SDL_islower(int x);
528 extern DECLSPEC int SDLCALL SDL_isprint(int x);
529 extern DECLSPEC int SDLCALL SDL_isgraph(int x);
530 extern DECLSPEC int SDLCALL SDL_toupper(int x);
531 extern DECLSPEC int SDLCALL SDL_tolower(int x);
533 extern DECLSPEC Uint16 SDLCALL SDL_crc16(Uint16 crc, const void *data, size_t len);
534 extern DECLSPEC Uint32 SDLCALL SDL_crc32(Uint32 crc, const void *data, size_t len);
536 extern DECLSPEC void *SDLCALL SDL_memset(SDL_OUT_BYTECAP(len) void *dst, int c, size_t len);
579 extern DECLSPEC void *SDLCALL SDL_memcpy(SDL_OUT_BYTECAP(len) void *dst, SDL_IN_BYTECAP(len) const …
581 extern DECLSPEC void *SDLCALL SDL_memmove(SDL_OUT_BYTECAP(len) void *dst, SDL_IN_BYTECAP(len) const…
582 extern DECLSPEC int SDLCALL SDL_memcmp(const void *s1, const void *s2, size_t len);
584 extern DECLSPEC size_t SDLCALL SDL_wcslen(const wchar_t *wstr);
585 extern DECLSPEC size_t SDLCALL SDL_wcslcpy(SDL_OUT_Z_CAP(maxlen) wchar_t *dst, const wchar_t *src, …
586 extern DECLSPEC size_t SDLCALL SDL_wcslcat(SDL_INOUT_Z_CAP(maxlen) wchar_t *dst, const wchar_t *src…
587 extern DECLSPEC wchar_t *SDLCALL SDL_wcsdup(const wchar_t *wstr);
588 extern DECLSPEC wchar_t *SDLCALL SDL_wcsstr(const wchar_t *haystack, const wchar_t *needle);
590 extern DECLSPEC int SDLCALL SDL_wcscmp(const wchar_t *str1, const wchar_t *str2);
591 extern DECLSPEC int SDLCALL SDL_wcsncmp(const wchar_t *str1, const wchar_t *str2, size_t maxlen);
592 extern DECLSPEC int SDLCALL SDL_wcscasecmp(const wchar_t *str1, const wchar_t *str2);
593 extern DECLSPEC int SDLCALL SDL_wcsncasecmp(const wchar_t *str1, const wchar_t *str2, size_t len);
595 extern DECLSPEC size_t SDLCALL SDL_strlen(const char *str);
596 extern DECLSPEC size_t SDLCALL SDL_strlcpy(SDL_OUT_Z_CAP(maxlen) char *dst, const char *src, size_t…
597 extern DECLSPEC size_t SDLCALL SDL_utf8strlcpy(SDL_OUT_Z_CAP(dst_bytes) char *dst, const char *src,…
598 extern DECLSPEC size_t SDLCALL SDL_strlcat(SDL_INOUT_Z_CAP(maxlen) char *dst, const char *src, size…
599 extern DECLSPEC char *SDLCALL SDL_strdup(const char *str);
600 extern DECLSPEC char *SDLCALL SDL_strrev(char *str);
601 extern DECLSPEC char *SDLCALL SDL_strupr(char *str);
602 extern DECLSPEC char *SDLCALL SDL_strlwr(char *str);
603 extern DECLSPEC char *SDLCALL SDL_strchr(const char *str, int c);
604 extern DECLSPEC char *SDLCALL SDL_strrchr(const char *str, int c);
605 extern DECLSPEC char *SDLCALL SDL_strstr(const char *haystack, const char *needle);
606 extern DECLSPEC char *SDLCALL SDL_strcasestr(const char *haystack, const char *needle);
607 extern DECLSPEC char *SDLCALL SDL_strtokr(char *s1, const char *s2, char **saveptr);
608 extern DECLSPEC size_t SDLCALL SDL_utf8strlen(const char *str);
609 extern DECLSPEC size_t SDLCALL SDL_utf8strnlen(const char *str, size_t bytes);
611 extern DECLSPEC char *SDLCALL SDL_itoa(int value, char *str, int radix);
612 extern DECLSPEC char *SDLCALL SDL_uitoa(unsigned int value, char *str, int radix);
613 extern DECLSPEC char *SDLCALL SDL_ltoa(long value, char *str, int radix);
614 extern DECLSPEC char *SDLCALL SDL_ultoa(unsigned long value, char *str, int radix);
615 extern DECLSPEC char *SDLCALL SDL_lltoa(Sint64 value, char *str, int radix);
616 extern DECLSPEC char *SDLCALL SDL_ulltoa(Uint64 value, char *str, int radix);
618 extern DECLSPEC int SDLCALL SDL_atoi(const char *str);
619 extern DECLSPEC double SDLCALL SDL_atof(const char *str);
620 extern DECLSPEC long SDLCALL SDL_strtol(const char *str, char **endp, int base);
621 extern DECLSPEC unsigned long SDLCALL SDL_strtoul(const char *str, char **endp, int base);
622 extern DECLSPEC Sint64 SDLCALL SDL_strtoll(const char *str, char **endp, int base);
623 extern DECLSPEC Uint64 SDLCALL SDL_strtoull(const char *str, char **endp, int base);
624 extern DECLSPEC double SDLCALL SDL_strtod(const char *str, char **endp);
626 extern DECLSPEC int SDLCALL SDL_strcmp(const char *str1, const char *str2);
627 extern DECLSPEC int SDLCALL SDL_strncmp(const char *str1, const char *str2, size_t maxlen);
628 extern DECLSPEC int SDLCALL SDL_strcasecmp(const char *str1, const char *str2);
629 extern DECLSPEC int SDLCALL SDL_strncasecmp(const char *str1, const char *str2, size_t len);
631 extern DECLSPEC int SDLCALL SDL_sscanf(const char *text, SDL_SCANF_FORMAT_STRING const char *fmt, .…
632 extern DECLSPEC int SDLCALL SDL_vsscanf(const char *text, SDL_SCANF_FORMAT_STRING const char *fmt, …
633 extern DECLSPEC int SDLCALL SDL_snprintf(SDL_OUT_Z_CAP(maxlen) char *text, size_t maxlen, SDL_PRINT…
634 extern DECLSPEC int SDLCALL SDL_vsnprintf(SDL_OUT_Z_CAP(maxlen) char *text, size_t maxlen, SDL_PRIN…
635 extern DECLSPEC int SDLCALL SDL_asprintf(char **strp, SDL_PRINTF_FORMAT_STRING const char *fmt, ...…
636 extern DECLSPEC int SDLCALL SDL_vasprintf(char **strp, SDL_PRINTF_FORMAT_STRING const char *fmt, va…
658 extern DECLSPEC double SDLCALL SDL_acos(double x);
659 extern DECLSPEC float SDLCALL SDL_acosf(float x);
660 extern DECLSPEC double SDLCALL SDL_asin(double x);
661 extern DECLSPEC float SDLCALL SDL_asinf(float x);
662 extern DECLSPEC double SDLCALL SDL_atan(double x);
663 extern DECLSPEC float SDLCALL SDL_atanf(float x);
664 extern DECLSPEC double SDLCALL SDL_atan2(double y, double x);
665 extern DECLSPEC float SDLCALL SDL_atan2f(float y, float x);
666 extern DECLSPEC double SDLCALL SDL_ceil(double x);
667 extern DECLSPEC float SDLCALL SDL_ceilf(float x);
668 extern DECLSPEC double SDLCALL SDL_copysign(double x, double y);
669 extern DECLSPEC float SDLCALL SDL_copysignf(float x, float y);
670 extern DECLSPEC double SDLCALL SDL_cos(double x);
671 extern DECLSPEC float SDLCALL SDL_cosf(float x);
672 extern DECLSPEC double SDLCALL SDL_exp(double x);
673 extern DECLSPEC float SDLCALL SDL_expf(float x);
674 extern DECLSPEC double SDLCALL SDL_fabs(double x);
675 extern DECLSPEC float SDLCALL SDL_fabsf(float x);
676 extern DECLSPEC double SDLCALL SDL_floor(double x);
677 extern DECLSPEC float SDLCALL SDL_floorf(float x);
678 extern DECLSPEC double SDLCALL SDL_trunc(double x);
679 extern DECLSPEC float SDLCALL SDL_truncf(float x);
680 extern DECLSPEC double SDLCALL SDL_fmod(double x, double y);
681 extern DECLSPEC float SDLCALL SDL_fmodf(float x, float y);
682 extern DECLSPEC double SDLCALL SDL_log(double x);
683 extern DECLSPEC float SDLCALL SDL_logf(float x);
684 extern DECLSPEC double SDLCALL SDL_log10(double x);
685 extern DECLSPEC float SDLCALL SDL_log10f(float x);
686 extern DECLSPEC double SDLCALL SDL_pow(double x, double y);
687 extern DECLSPEC float SDLCALL SDL_powf(float x, float y);
688 extern DECLSPEC double SDLCALL SDL_round(double x);
689 extern DECLSPEC float SDLCALL SDL_roundf(float x);
690 extern DECLSPEC long SDLCALL SDL_lround(double x);
691 extern DECLSPEC long SDLCALL SDL_lroundf(float x);
692 extern DECLSPEC double SDLCALL SDL_scalbn(double x, int n);
693 extern DECLSPEC float SDLCALL SDL_scalbnf(float x, int n);
694 extern DECLSPEC double SDLCALL SDL_sin(double x);
695 extern DECLSPEC float SDLCALL SDL_sinf(float x);
696 extern DECLSPEC double SDLCALL SDL_sqrt(double x);
697 extern DECLSPEC float SDLCALL SDL_sqrtf(float x);
698 extern DECLSPEC double SDLCALL SDL_tan(double x);
699 extern DECLSPEC float SDLCALL SDL_tanf(float x);
709 extern DECLSPEC SDL_iconv_t SDLCALL SDL_iconv_open(const char *tocode,
711 extern DECLSPEC int SDLCALL SDL_iconv_close(SDL_iconv_t cd);
712 extern DECLSPEC size_t SDLCALL SDL_iconv(SDL_iconv_t cd, const char **inbuf,
722 extern DECLSPEC char *SDLCALL SDL_iconv_string(const char *tocode,