sdlWcslen function

int sdlWcslen(
  1. Pointer<Int16> wstr
)
extern DECLSPEC size_t SDLCALL SDL_wcslen(const wchar_t *wstr)

Implementation

int sdlWcslen(Pointer<Int16> wstr) {
  final sdlWcslenLookupFunction = libSdl2.lookupFunction<
      Uint32 Function(Pointer<Int16> wstr),
      int Function(Pointer<Int16> wstr)>('SDL_wcslen');
  return sdlWcslenLookupFunction(wstr);
}