| diff -ru SDL2-2.0.12.orig/src/video/windows/SDL_windowstaskdialog.h SDL2-2.0.12/src/video/windows/SDL_windowstaskdialog.h |
| |
| |
| @@ -18,7 +18,7 @@ |
| misrepresented as being the original software. |
| 3. This notice may not be removed or altered from any source distribution. |
| */ |
| -#include <pshpack1.h> |
| +#pragma pack(push,1) |
| |
| typedef HRESULT(CALLBACK *PFTASKDIALOGCALLBACK)(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam, LONG_PTR lpRefData); |
| |
| @@ -153,4 +153,4 @@ |
| UINT cxWidth; // width of the Task Dialog's client area in DLU's. If 0, Task Dialog will calculate the ideal width. |
| } TASKDIALOGCONFIG; |
| |
| -#include <poppack.h> |
| +#pragma pack(pop) |