OSDN Git Service

API一覧に概要を追加 リンクを修正
[sdl2referencejp/sdl2referencejp.git] / old / TTF_Linked_Version.html
diff --git a/old/TTF_Linked_Version.html b/old/TTF_Linked_Version.html
new file mode 100644 (file)
index 0000000..15aed18
--- /dev/null
@@ -0,0 +1,46 @@
+<!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="SDL_ttf">
+<link rel="top" href="index.html" title="\83z\81[\83\80">
+<link rel="parent" href="SDL_ttf-functions-general.html" title="1\82Â\8fã">
+<title>TTF_Linked_Version</title>
+</head>
+<body>
+<a href="index.html#SDL_ttf">\96Ú\8e\9f</a> - <a href="SDL_ttf-functions.html">3.\8aÖ\90\94</a> - <a href="SDL_ttf-functions-general.html">3.1\88ê\94Ê</a> - TTF_Linked_Version
+<hr>
+<h1>TTF_Linked_Version</h1>
+<p>
+<code>const SDL_version *TTF_Linked_Version()</code><br>
+<code>void SDL_TTF_VERSION(SDL_version *compile_version)</code>
+</p>
+<p>
+\82±\82ê\82Í<a href="SDL_GetVersion.html">SDL_GetVersion</a>\82â<a href="SDL_VERSION.html">SDL_VERSION</a>\82Æ\93¯\82\82æ\82¤\82È\8b@\94\\82ð\8e\9d\82Â.
+\82±\82ê\82ç\82ð\8eg\82¤\82Æ, \8eÀ\8ds\8e\9e\82Ì\83o\81[\83W\83\87\83\93\82Æ\83R\83\93\83p\83C\83\8b\8e\9e\82Ì\83o\81[\83W\83\87\83\93\82ð\94ä\8ar\82Å\82«\82é.
+\82±\82ê\82ç\82Ì\8aÖ\90\94/\83}\83N\83\8d\82Í, \8eg\82¤\91O\82É\83\89\83C\83u\83\89\83\8a\82ð\8f\89\8aú\89»\82·\82é\95K\97v\82Í\82È\82¢.
+</p>
+<h2>\83T\83\93\83v\83\8b\83R\81[\83h</h2>
+<code>
+<pre>
+SDL_version compile_version;
+const SDL_version *link_version=TTF_Linked_Version();
+SDL_TTF_VERSION(&amp;compile_version);
+printf("\83R\83\93\83p\83C\83\8b\8e\9e\82ÌSDL_ttf\82Ì\83o\81[\83W\83\87\83\93: %d.%d.%d\n", 
+        compile_version.major,
+        compile_version.minor,
+        compile_version.patch);
+printf("\8eÀ\8ds\92\86\82ÌSDL_ttf\82Ì\83o\81[\83W\83\87\83\93: %d.%d.%d\n", 
+        link_version->major,
+        link_version->minor,
+        link_version->patch);
+</pre>
+</code>
+<h2>\8eQ\8fÆ</h2>
+<a href="TTF_Init.html">TTF_Init</a>
+<h2>\8c´\95\82Ö\82Ì\83\8a\83\93\83N</h2>
+<a href="https://www.libsdl.org/projects/old/SDL_ttf/docs/SDL_ttf_7.html#SEC7">3.1.1 TTF_Linked_Version</a>
+<hr>
+</body>
+</html>