SDL_ShowCursor函数

SDL_ShowCursor函数:

触发屏幕的鼠标是否显示。


定义:

int SDL_ShowCursor(int toggle)

例子:

int main(int argc, char *argv[]) {
    /* creates a blank cursor */
    SDL_ShowCursor(SDL_DISABLE);
    /* ... */
    return 0;
}


跟老菜鸟学C++

http://edu.csdn.net/course/detail/2901

你可能感兴趣的:(函数,sdl,库)