OSDN Git Service

SDL_SetWindowsMessageHook 新規追加
authormaruhiro <maruhiro@bridge.ocn.ne.jp>
Wed, 20 May 2015 14:23:57 +0000 (23:23 +0900)
committermaruhiro <maruhiro@bridge.ocn.ne.jp>
Wed, 20 May 2015 14:23:57 +0000 (23:23 +0900)
CategoryAPI.html
CategorySystem.html
SDL_SetWindowsMessageHook.html [new file with mode: 0644]

index 2eb1f43..95e359e 100644 (file)
 <li><a href="SDL_SetWindowPosition.html">SDL_SetWindowPosition</a></li>
 <li><a href="SDL_SetWindowSize.html">SDL_SetWindowSize</a></li>
 <li><a href="SDL_SetWindowTitle.html">SDL_SetWindowTitle</a></li>
+<li><a href="SDL_SetWindowsMessageHook.html">SDL_SetWindowsMessageHook</a></li>
 <li><a href="SDL_ShowCursor.html">SDL_ShowCursor</a></li>
 <li><a href="SDL_ShowMessageBox.html">SDL_ShowMessageBox</a></li>
 <li><a href="SDL_ShowSimpleMessageBox.html">SDL_ShowSimpleMessageBox</a></li>
index 4f0ddf7..1ff045a 100644 (file)
@@ -17,7 +17,7 @@
 \93Á\92è\82Ì\8aÂ\8b«\82Ì\8fÚ\8d×\82È\8aÖ\90\94\82Í\82±\82±\82É\95ª\97Þ\82³\82ê\82Ä\82¢\82é.\r
 <h2>\97ñ\8b\93\91Ì</h2>\r
 <ol>\r
-<li><a href="SDL_WinRT_Path.html">SDL_WinRT_Path</a><li>\r
+<li><a href="SDL_WinRT_Path.html">SDL_WinRT_Path</a></li>\r
 </ol>\r
 <h2>\8aÖ\90\94</h2>\r
 <ol>\r
@@ -29,6 +29,7 @@
 <li><a href="SDL_DXGIGetOutputInfo.html">SDL_DXGIGetOutputInfo</a></li>\r
 <li><a href="SDL_Direct3D9GetAdapterIndex.html">SDL_Direct3D9GetAdapterIndex</a></li>\r
 <li><a href="SDL_RenderGetD3D9Device.html">SDL_RenderGetD3D9Device</a></li>\r
+<li><a href="SDL_SetWindowsMessageHook.html">SDL_SetWindowsMessageHook</a></li>\r
 <li><a href="SDL_WinRTGetFSPathUNICODE.html">SDL_WinRTGetFSPathUNICODE</a></li>\r
 <li><a href="SDL_WinRTGetFSPathUTF8.html">SDL_WinRTGetFSPathUTF8</a></li>\r
 </ol>\r
diff --git a/SDL_SetWindowsMessageHook.html b/SDL_SetWindowsMessageHook.html
new file mode 100644 (file)
index 0000000..03bc81d
--- /dev/null
@@ -0,0 +1,49 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<html lang="ja-JP">
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=Shift_JIS">
+<meta http-equiv="Content-Style-Type" content="text/css">
+<meta name="keywords" content="Simple Directmedia Layer SDL2.0">
+<link rel="top" href="index.html" title="\83z\81[\83\80">
+<link rel="parent" href="CategorySystem.html" title="1\82Â\8fã">
+<title>SDL_SetWindowsMessageHook</title>
+</head>
+<body>
+<a href="index.html">\96Ú\8e\9f</a> - <a href="ApiByCategory.html">API(\8b@\94\\95Ê)</a> - <a href="CategorySystem.html">\8aÂ\8b«\8cÅ\97L\82Ì\8b@\94\</a> - SDL_SetWindowsMessageHook
+<hr>
+<h1>SDL_SetWindowsMessageHook</h1>
+\83E\83B\83\93\83h\83E\83\81\83b\83Z\81[\83W\82Ì\93x\82ÉTranslateMessage()\82Ì\91O\82É\8cÄ\82Î\82ê\82é\8aÖ\90\94\82ð\90Ý\92è\82·\82é
+<h2>\8d\\95¶</h2>
+<code>void SDL_SetWindowsMessageHook(SDL_WindowsMessageHook callback, void* userdata)</code>
+<h2>\88ø\90\94</h2>
+<table border="1" summary="SDL_SetWindowsMessageHook">
+<tr><td>callback</td><td>\83\81\83b\83Z\81[\83W\82Ì\93x\82É\8cÄ\82Î\82ê\82é\8aÖ\90\94\8fÚ\8d×\82ð\8eQ\8fÆ\82·\82é\82±\82Æ</td></tr>
+<tr><td>userdata</td><td>callback\82É\93n\82³\82ê\82é\83|\83C\83\93\83^</td></tr>
+</table>
+<h2>\8fÚ\8d×</h2>
+<p>
+\82±\82Ì\8aÖ\90\94\82ÍMicrosoft Windows\82Ì\82Ý\82Å\97L\8cø\82Å\82 \82é.
+</p>
+<p>
+callback\82Ì\8aÖ\90\94\83v\83\8d\83g\83^\83C\83v\82Í:
+<code>
+<pre>
+void SDL_WindowsMessageHook(void*        userdata,
+                            void*        hWnd,
+                            unsigned int message,
+                            Uint64       wParam,
+                            Sint64       lParam)
+</pre>
+</code>
+\88ø\90\94\82Í
+<table border="1" summary="SDL_WindowsMessageHook">
+<tr><td>userdata</td><td>SDL_SetWindowsMessageHook()\82É\93n\82µ\82½userdata</td></tr>
+</table>
+</p>
+<h2>\83o\81[\83W\83\87\83\93</h2>
+SDL 2.0.4\88È\8d~
+<h2>SDL Wiki\82Ö\82Ì\83\8a\83\93\83N</h2>
+<a href="https://wiki.libsdl.org/SDL_SetWindowsMessageHook">SDL_SetWindowsMessageHook - SDL Wiki</a>
+<hr>
+</body>
+</html>