* this function prepares it for them and gives them a pointer as a return value.
*
* @param ksynth_instance Pointer to the KSynth instance
- * @param buffer_size Size of the buffer (Note: Values are typically between 32 and 16384)
+ * @param buffer_size Size of the buffer (Note: Values are typically between 8 and 65536)
* @return A pointer to the generated buffer on success, NULL on failure.
*
* @~japanese
* この関数は内部的に ksynth_fill_buffer を指しますが、ユーザーにバッファーを管理させる代わりに、この関数はユーザーのためにバッファーを準備し、戻り値としてポインターを与えます。
*
* @param ksynth_instance KSynthインスタンスへのポインタ
- * @param buffer_size バッファのサイズ(注:通常は32から16384の値です)
+ * @param buffer_size バッファのサイズ(注:通常は8から65536の値です)
* @return 成功した場合は生成されたバッファへのポインタ、失敗した場合はNULL
*/
float* ksynth_generate_buffer(struct KSynth* ksynth_instance, unsigned int buffer_size);