Studio::Bank::getStringCount

FMOD Studio API

Firelight Technologies FMOD Studio API

Studio::Bank::getStringCount

Retrieves the number of string table entries in the bank.

C++ Syntax

FMOD_RESULT Studio::Bank::getStringCount(
  int *count
);

C Syntax

FMOD_RESULT FMOD_Studio_Bank_GetStringCount(
  FMOD_STUDIO_BANK *bank,
  int *count
);

C# Syntax

RESULT Studio.Bank.getStringCount(
  out int count
);

JavaScript Syntax

Bank.getStringCount(
  count                            // writes value to count.val
);

Parameters

count
Address of a variable to receive the number of string table entries.

Return Values

If the function succeeds then the return value is FMOD_OK.
If the function fails then the return value will be one of the values defined in the FMOD_RESULT enumeration.

Remarks

Can be used in conjunction with Studio::Bank::getStringInfo to directly access the string table. Only the strings bank will contain string table entries.

See Also




Version 1.10.03 Built on Feb 1, 2018