12/06/22 14:33:31.71 EOlR9Clb
ハンドルのポインタだな。
int sound1, sound2;
int *pHandle = &sound1;
se_play(*pHandle);
でも >>272 の引数はcharなんだよね。
たぶんツリーでハンドルのこといいたいんだろう。
std::map< std::string , int > tree;
void se_play(char* name){
std::string key = name;
int handle = tree[key];
}