Lines Matching refs:DECLSPEC
362 extern DECLSPEC void *SDLCALL SDL_malloc(size_t size);
363 extern DECLSPEC void *SDLCALL SDL_calloc(size_t nmemb, size_t size);
364 extern DECLSPEC void *SDLCALL SDL_realloc(void *mem, size_t size);
365 extern DECLSPEC void SDLCALL SDL_free(void *mem);
375 extern DECLSPEC void SDLCALL SDL_GetMemoryFunctions(SDL_malloc_func *malloc_func,
388 extern DECLSPEC int SDLCALL SDL_SetMemoryFunctions(SDL_malloc_func malloc_func,
396 extern DECLSPEC int SDLCALL SDL_GetNumAllocations(void);
398 extern DECLSPEC char *SDLCALL SDL_getenv(const char *name);
399 extern DECLSPEC int SDLCALL SDL_setenv(const char *name, const char *value, int overwrite);
401 extern DECLSPEC void SDLCALL SDL_qsort(void *base, size_t nmemb, size_t size, int (*compare) (const…
403 extern DECLSPEC int SDLCALL SDL_abs(int x);
410 extern DECLSPEC int SDLCALL SDL_isdigit(int x);
411 extern DECLSPEC int SDLCALL SDL_isspace(int x);
412 extern DECLSPEC int SDLCALL SDL_isupper(int x);
413 extern DECLSPEC int SDLCALL SDL_islower(int x);
414 extern DECLSPEC int SDLCALL SDL_toupper(int x);
415 extern DECLSPEC int SDLCALL SDL_tolower(int x);
417 extern DECLSPEC void *SDLCALL SDL_memset(SDL_OUT_BYTECAP(len) void *dst, int c, size_t len);
454 extern DECLSPEC void *SDLCALL SDL_memcpy(SDL_OUT_BYTECAP(len) void *dst, SDL_IN_BYTECAP(len) const …
456 extern DECLSPEC void *SDLCALL SDL_memmove(SDL_OUT_BYTECAP(len) void *dst, SDL_IN_BYTECAP(len) const…
457 extern DECLSPEC int SDLCALL SDL_memcmp(const void *s1, const void *s2, size_t len);
459 extern DECLSPEC size_t SDLCALL SDL_wcslen(const wchar_t *wstr);
460 extern DECLSPEC size_t SDLCALL SDL_wcslcpy(SDL_OUT_Z_CAP(maxlen) wchar_t *dst, const wchar_t *src, …
461 extern DECLSPEC size_t SDLCALL SDL_wcslcat(SDL_INOUT_Z_CAP(maxlen) wchar_t *dst, const wchar_t *src…
462 extern DECLSPEC wchar_t *SDLCALL SDL_wcsdup(const wchar_t *wstr);
463 extern DECLSPEC wchar_t *SDLCALL SDL_wcsstr(const wchar_t *haystack, const wchar_t *needle);
465 extern DECLSPEC int SDLCALL SDL_wcscmp(const wchar_t *str1, const wchar_t *str2);
466 extern DECLSPEC int SDLCALL SDL_wcsncmp(const wchar_t *str1, const wchar_t *str2, size_t maxlen);
468 extern DECLSPEC size_t SDLCALL SDL_strlen(const char *str);
469 extern DECLSPEC size_t SDLCALL SDL_strlcpy(SDL_OUT_Z_CAP(maxlen) char *dst, const char *src, size_t…
470 extern DECLSPEC size_t SDLCALL SDL_utf8strlcpy(SDL_OUT_Z_CAP(dst_bytes) char *dst, const char *src,…
471 extern DECLSPEC size_t SDLCALL SDL_strlcat(SDL_INOUT_Z_CAP(maxlen) char *dst, const char *src, size…
472 extern DECLSPEC char *SDLCALL SDL_strdup(const char *str);
473 extern DECLSPEC char *SDLCALL SDL_strrev(char *str);
474 extern DECLSPEC char *SDLCALL SDL_strupr(char *str);
475 extern DECLSPEC char *SDLCALL SDL_strlwr(char *str);
476 extern DECLSPEC char *SDLCALL SDL_strchr(const char *str, int c);
477 extern DECLSPEC char *SDLCALL SDL_strrchr(const char *str, int c);
478 extern DECLSPEC char *SDLCALL SDL_strstr(const char *haystack, const char *needle);
479 extern DECLSPEC char *SDLCALL SDL_strtokr(char *s1, const char *s2, char **saveptr);
480 extern DECLSPEC size_t SDLCALL SDL_utf8strlen(const char *str);
482 extern DECLSPEC char *SDLCALL SDL_itoa(int value, char *str, int radix);
483 extern DECLSPEC char *SDLCALL SDL_uitoa(unsigned int value, char *str, int radix);
484 extern DECLSPEC char *SDLCALL SDL_ltoa(long value, char *str, int radix);
485 extern DECLSPEC char *SDLCALL SDL_ultoa(unsigned long value, char *str, int radix);
486 extern DECLSPEC char *SDLCALL SDL_lltoa(Sint64 value, char *str, int radix);
487 extern DECLSPEC char *SDLCALL SDL_ulltoa(Uint64 value, char *str, int radix);
489 extern DECLSPEC int SDLCALL SDL_atoi(const char *str);
490 extern DECLSPEC double SDLCALL SDL_atof(const char *str);
491 extern DECLSPEC long SDLCALL SDL_strtol(const char *str, char **endp, int base);
492 extern DECLSPEC unsigned long SDLCALL SDL_strtoul(const char *str, char **endp, int base);
493 extern DECLSPEC Sint64 SDLCALL SDL_strtoll(const char *str, char **endp, int base);
494 extern DECLSPEC Uint64 SDLCALL SDL_strtoull(const char *str, char **endp, int base);
495 extern DECLSPEC double SDLCALL SDL_strtod(const char *str, char **endp);
497 extern DECLSPEC int SDLCALL SDL_strcmp(const char *str1, const char *str2);
498 extern DECLSPEC int SDLCALL SDL_strncmp(const char *str1, const char *str2, size_t maxlen);
499 extern DECLSPEC int SDLCALL SDL_strcasecmp(const char *str1, const char *str2);
500 extern DECLSPEC int SDLCALL SDL_strncasecmp(const char *str1, const char *str2, size_t len);
502 extern DECLSPEC int SDLCALL SDL_sscanf(const char *text, SDL_SCANF_FORMAT_STRING const char *fmt, .…
503 extern DECLSPEC int SDLCALL SDL_vsscanf(const char *text, const char *fmt, va_list ap);
504 extern DECLSPEC int SDLCALL SDL_snprintf(SDL_OUT_Z_CAP(maxlen) char *text, size_t maxlen, SDL_PRINT…
505 extern DECLSPEC int SDLCALL SDL_vsnprintf(SDL_OUT_Z_CAP(maxlen) char *text, size_t maxlen, const ch…
513 extern DECLSPEC double SDLCALL SDL_acos(double x);
514 extern DECLSPEC float SDLCALL SDL_acosf(float x);
515 extern DECLSPEC double SDLCALL SDL_asin(double x);
516 extern DECLSPEC float SDLCALL SDL_asinf(float x);
517 extern DECLSPEC double SDLCALL SDL_atan(double x);
518 extern DECLSPEC float SDLCALL SDL_atanf(float x);
519 extern DECLSPEC double SDLCALL SDL_atan2(double x, double y);
520 extern DECLSPEC float SDLCALL SDL_atan2f(float x, float y);
521 extern DECLSPEC double SDLCALL SDL_ceil(double x);
522 extern DECLSPEC float SDLCALL SDL_ceilf(float x);
523 extern DECLSPEC double SDLCALL SDL_copysign(double x, double y);
524 extern DECLSPEC float SDLCALL SDL_copysignf(float x, float y);
525 extern DECLSPEC double SDLCALL SDL_cos(double x);
526 extern DECLSPEC float SDLCALL SDL_cosf(float x);
527 extern DECLSPEC double SDLCALL SDL_exp(double x);
528 extern DECLSPEC float SDLCALL SDL_expf(float x);
529 extern DECLSPEC double SDLCALL SDL_fabs(double x);
530 extern DECLSPEC float SDLCALL SDL_fabsf(float x);
531 extern DECLSPEC double SDLCALL SDL_floor(double x);
532 extern DECLSPEC float SDLCALL SDL_floorf(float x);
533 extern DECLSPEC double SDLCALL SDL_trunc(double x);
534 extern DECLSPEC float SDLCALL SDL_truncf(float x);
535 extern DECLSPEC double SDLCALL SDL_fmod(double x, double y);
536 extern DECLSPEC float SDLCALL SDL_fmodf(float x, float y);
537 extern DECLSPEC double SDLCALL SDL_log(double x);
538 extern DECLSPEC float SDLCALL SDL_logf(float x);
539 extern DECLSPEC double SDLCALL SDL_log10(double x);
540 extern DECLSPEC float SDLCALL SDL_log10f(float x);
541 extern DECLSPEC double SDLCALL SDL_pow(double x, double y);
542 extern DECLSPEC float SDLCALL SDL_powf(float x, float y);
543 extern DECLSPEC double SDLCALL SDL_scalbn(double x, int n);
544 extern DECLSPEC float SDLCALL SDL_scalbnf(float x, int n);
545 extern DECLSPEC double SDLCALL SDL_sin(double x);
546 extern DECLSPEC float SDLCALL SDL_sinf(float x);
547 extern DECLSPEC double SDLCALL SDL_sqrt(double x);
548 extern DECLSPEC float SDLCALL SDL_sqrtf(float x);
549 extern DECLSPEC double SDLCALL SDL_tan(double x);
550 extern DECLSPEC float SDLCALL SDL_tanf(float x);
560 extern DECLSPEC SDL_iconv_t SDLCALL SDL_iconv_open(const char *tocode,
562 extern DECLSPEC int SDLCALL SDL_iconv_close(SDL_iconv_t cd);
563 extern DECLSPEC size_t SDLCALL SDL_iconv(SDL_iconv_t cd, const char **inbuf,
570 extern DECLSPEC char *SDLCALL SDL_iconv_string(const char *tocode,