gpt4 book ai didi

c++ - SDL - 窗口数据

转载 作者:行者123 更新时间:2023-11-30 02:42:55 25 4
gpt4 key购买 nike

我在浏览 SDL 文档时发现 WindowData(SDL_SetWindowDataSDL_GetWindowData)。这些函数有什么用?它存储与名称关联的 void 指针,那么它是否仅用于存储我以后可以使用的对象?或者它在 SDL 中是否重要?

最佳答案

这些函数应该可以让您使用窗口对象存储指向任意数据(例如,您选择的内存缓冲区或对象)的指针:

MyObject *object_ptr = new MyObject(); // Your custom object
object_ptr->data = 42; // Your custom data
SDL_SetWindowData(window, "mycustomdata", object_ptr);

// Somewhere else in your code in a place where you have access to 'window'
MyObject *object_ptr = SDL_GetWindowData(window, "mycustomdata");
// do whatever you want with object_ptr..

此行为模仿 win32 API 的 SetWindowLong(hwnd, GWL_USERDATA, pointer); 调用。

关于c++ - SDL - 窗口数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26604970/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com