{"id":611,"date":"2013-09-21T22:37:38","date_gmt":"2013-09-21T13:37:38","guid":{"rendered":"http:\/\/dev.activebasic.com\/egtra\/?p=611"},"modified":"2013-09-21T22:37:38","modified_gmt":"2013-09-21T13:37:38","slug":"wtl-without-atl","status":"publish","type":"post","link":"https:\/\/dev.activebasic.com\/egtra\/2013\/09\/21\/611\/","title":{"rendered":"WTL without ATL"},"content":{"rendered":"<p>WTL\u3001\u3068\u304f\u306b\u30e1\u30c3\u30bb\u30fc\u30b8\u30af\u30e9\u30c3\u30ab\u30fc&lt;atlcrack.h&gt;\u306fATL\u306a\u3057\u306e\u5358\u72ec\u3067\u3082\u4f7f\u3048\u306a\u3044\u3060\u308d\u3046\u304b\u3068\u601d\u3044\u3001\u8a66\u3057\u3066\u307f\u307e\u3057\u305f\u3002\u7d50\u8ad6\u304b\u3089\u8a00\u3046\u3068\u53ef\u80fd\u3067\u3057\u305f\u3002\u305f\u3060\u3057\u30012\u3064\u7406\u7531\u3067\u5c11\u3057\u6b8b\u5ff5\u306a\u611f\u3058\u3067\u3057\u305f\u3002<\/p>\n<ul>\n<li>\u5148\u982d\u306b#define __ATLAPP_H__\u3068\u3044\u3046\u304a\u307e\u3058\u306a\u3044\u3092\u5fc5\u8981\u3068\u3059\u308b\u3002<\/li>\n<li>END_MSG_MAP\u3092\u81ea\u5206\u3067\u5b9a\u7fa9\u3059\u308b\u5fc5\u8981\u304c\u3042\u308b\u3002<\/li>\n<\/ul>\n<p>\u30b3\u30fc\u30c9\u306f\u3053\u3093\u306a\u611f\u3058\u3067\u3059\u3002<\/p>\n<pre lang=\"cpp\">\r\n#define _WIN32_WINNT 0x0501\r\n\r\n#define OEMRESOURCE\r\n\r\n#define _WTL_NO_AUTOMATIC_NAMESPACE\r\n\r\n#include <system_error>\r\n\r\n#include <SDKDDKVer.h>\r\n#include <windows.h>\r\n#include <windowsx.h>\r\n\r\n#define __ATLAPP_H__\r\n#include <atlcrack.h>\r\n\r\n#define END_MSG_MAP() } return FALSE; }\r\n\r\n#include <tchar.h>\r\n\r\nclass WindowBase\r\n{\r\npublic:\r\n  static void InitApplication(HINSTANCE hinst)\r\n  {\r\n    WNDCLASSEX wcex = {\r\n      sizeof wcex,\r\n      CS_HREDRAW | CS_VREDRAW,\r\n      WndProcEntry,\r\n      0, 0,\r\n      hinst,\r\n      static_cast<HICON>(LoadImage(\r\n        nullptr, MAKEINTRESOURCE(OIC_SAMPLE), IMAGE_ICON,\r\n        0, 0, LR_DEFAULTSIZE | LR_SHARED)),\r\n      static_cast<HCURSOR>(\r\n        LoadImage(nullptr, MAKEINTRESOURCE(OCR_NORMAL), IMAGE_CURSOR,\r\n        0, 0, LR_DEFAULTSIZE | LR_SHARED)),\r\n      reinterpret_cast<HBRUSH>(COLOR_WINDOW + 1),\r\n      nullptr,\r\n      TEXT(\"WindowBase Class\"),\r\n      nullptr,\r\n    };\r\n    windowClass = RegisterClassEx(&wcex);\r\n    if (!windowClass)\r\n    {\r\n      throw std::system_error(\r\n        static_cast<int>(GetLastError()),\r\n        std::system_category());\r\n    }\r\n  }\r\n\r\n  WindowBase() : hwnd() {}\r\n\r\n  void InitInstance()\r\n  {\r\n    hwnd = CreateWindowEx(\r\n    WS_EX_APPWINDOW | WS_EX_OVERLAPPEDWINDOW,\r\n    MAKEINTATOM(windowClass),\r\n    TEXT(\"\"),\r\n    WS_OVERLAPPEDWINDOW,\r\n    CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT,\r\n    nullptr,\r\n    nullptr,\r\n    nullptr,\r\n    this);\r\n    if (!hwnd)\r\n    {\r\n      throw std::system_error(\r\n        static_cast<int>(GetLastError()),\r\n        std::system_category());\r\n    }\r\n  }\r\n\r\n  HWND GetWindow() { return hwnd; }\r\n\r\nprotected:\r\n  virtual BOOL ProcessWindowMessage(\r\n    HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam,\r\n    LRESULT& lResult, DWORD dwMsgMapID = 0) = 0;\r\n\r\nprivate:\r\n  static BOOL OnNCCreate(HWND hwnd, CREATESTRUCT const* pcs)\r\n  {\r\n    SetWindowLongPtr(\r\n      hwnd, GWLP_USERDATA,\r\n      reinterpret_cast<LONG_PTR>(pcs->lpCreateParams));\r\n    return TRUE;\r\n  }\r\n\r\n  static LRESULT CALLBACK WndProcEntry(\r\n    HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)\r\n  {\r\n    switch (msg)\r\n    {\r\n      HANDLE_MSG(hwnd, WM_NCCREATE, OnNCCreate);\r\n    }\r\n    if (auto pwnd =\r\n      reinterpret_cast<WindowBase*>(GetWindowLongPtr(hwnd, GWLP_USERDATA)))\r\n    {\r\n      LRESULT lr = 0;\r\n      if (pwnd->ProcessWindowMessage(hwnd, msg, wParam, lParam, lr))\r\n      {\r\n        return lr;\r\n      }\r\n    }\r\n    return DefWindowProc(hwnd, msg, wParam, lParam);\r\n  }\r\n\r\n  static ATOM windowClass;\r\n\r\n  HWND hwnd;\r\n\r\n  \/\/WindowBase(WindowBase const&) = delete;\r\n  \/\/WindowBase& operator=(WindowBase const&) = delete;\r\n  WindowBase(WindowBase const&);\r\n  WindowBase& operator=(WindowBase const&);\r\n};\r\n\r\nclass TestWindow : public WindowBase\r\n{\r\npublic:\r\n  TestWindow()\r\n  {\r\n  }\r\n\r\nprivate:\r\n  void OnDestroy()\r\n  {\r\n    PostQuitMessage(0);\r\n  }\r\n\r\n  void OnPaint(HDC)\r\n  {\r\n    ValidateRect(GetWindow(), nullptr);\r\n  }\r\n\r\n  BEGIN_MSG_MAP_EX(TestWindow)\r\n    MSG_WM_PAINT(OnPaint)\r\n    MSG_WM_DESTROY(OnDestroy)\r\n  END_MSG_MAP()\r\n\r\nprivate:\r\n  TestWindow(TestWindow const&);\r\n  TestWindow& operator=(TestWindow const&);\r\n};\r\n\r\nATOM WindowBase::windowClass;\r\n\r\nint WINAPI _tWinMain(HINSTANCE hinst, HINSTANCE, LPTSTR, int cmdShow)\r\n{\r\n  try\r\n  {\r\n    WindowBase::InitApplication(hinst);\r\n\r\n    TestWindow wnd;\r\n    wnd.InitInstance();\r\n    ShowWindow(wnd.GetWindow(), cmdShow);\r\n    UpdateWindow(wnd.GetWindow());\r\n\r\n    for (;;)\r\n    {\r\n      MSG msg = {};\r\n      auto ret = GetMessage(&msg, nullptr, 0, 0);\r\n      if (ret == 0 || ret == -1)\r\n      {\r\n        return ret;\r\n      }\r\n      TranslateMessage(&msg);\r\n      DispatchMessage(&msg);\r\n    }\r\n  }\r\n  catch (std::exception const& e)\r\n  {\r\n    OutputDebugStringA(e.what());\r\n    return 1;\r\n  }\r\n}\r\n<\/pre>\n<p>\u30a6\u30a3\u30f3\u30c9\u30a6\u30d7\u30ed\u30b7\u30fc\u30b8\u30e3\u3067\u975e\u9759\u7684\u30e1\u30f3\u30d0\u95a2\u6570\u3092\u547c\u3073\u51fa\u3059\u51e6\u7406\u306f\u81ea\u524d\u3067\u4f5c\u3063\u3066\u3044\u307e\u3059\u3002static\u30e1\u30f3\u30d0\u95a2\u6570\u306eWndProcEntry\u304b\u3089BEGIN_MSG_MAP_EX\u5185\u90e8\u3067\u5b9a\u7fa9\u3055\u308c\u308bProcessWindowMessage\u3092\u547c\u3073\u51fa\u3057\u307e\u3059\u3002WM_NCCREATE\u3067C++\u30aa\u30d6\u30b8\u30a7\u30af\u30c8 (this)\u3068\u30a6\u30a3\u30f3\u30c9\u30a6\u3092\u7d50\u3073\u3064\u3051\u3066\u3044\u308b\u306e\u3067\u3001ATL\u307b\u3069\u5b8c\u74a7\u3067\u306f\u3042\u308a\u307e\u305b\u3093\u3002<\/p>\n<p>\u306a\u304a\u3001\u30e1\u30c3\u30bb\u30fc\u30b8\u30eb\u30fc\u30d7\u3082WTL::CMessageLoop\u3092\u4f7f\u7528\u3067\u304d\u306a\u3044\u304b\u3068\u8a66\u3057\u3066\u307f\u307e\u3057\u305f\u304c\u3001ATLASSERT\u306a\u3069\u69d8\u3005\u306aATL\u306e\u30de\u30af\u30ed\u306b\u4f9d\u5b58\u3057\u3066\u3044\u308b\u306e\u3067\u8ae6\u3081\u307e\u3057\u305f\u3002\u3084\u308c\u3070\u3067\u304d\u308b\u304b\u3082\u3057\u308c\u307e\u305b\u3093\u304c\u7121\u7528\u3068\u5224\u65ad\u3057\u307e\u3057\u305f\u3002<\/p>\n<p>\u3053\u308c\u306a\u3089\u3001&lt;windowsx.h&gt;\u306e\u30e1\u30c3\u30bb\u30fc\u30b8\u30af\u30e9\u30c3\u30ab\u30fc\u3092C++\u30af\u30e9\u30b9\u306b\u7d44\u307f\u5408\u308f\u305b\u308b\u306e\u3068\u307b\u3068\u3093\u3069\u5909\u308f\u3089\u306a\u3044\uff08\u53c2\u7167\uff1a<a href=\"\/egtra\/2011\/08\/13\/391\/\">\u30e1\u30c3\u30bb\u30fc\u30b8\u30af\u30e9\u30c3\u30ab\u30fc with C++\uff09<\/a>\uff09\u3068\u3044\u3046\u306e\u304c\u8a66\u3057\u3066\u307f\u305f\u611f\u60f3\u3067\u3059\u3002<\/p>\n","protected":false},"excerpt":{"rendered":"<p>WTL\u306e\u30e1\u30c3\u30bb\u30fc\u30b8\u30af\u30e9\u30c3\u30ab\u30fc\u3092ATL\u306a\u3057\u3067\u3082\u4f7f\u3048\u306a\u3044\u3060\u308d\u3046\u304b\u3068\u8a66\u3057\u3066\u307f\u307e\u3057\u305f\u3002\u4e00\u5fdc\u53ef\u80fd\u3067\u3057\u305f\u304c\u3001\u3042\u307e\u308a\u304d\u308c\u3044\u306a\u65b9\u6cd5\u3067\u306f\u3042\u308a\u307e\u305b\u3093\u3002<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"footnotes":""},"categories":[5,13],"tags":[247,273],"class_list":["post-611","post","type-post","status-publish","format-standard","hentry","category-cpp","category-winapi","tag-wtl","tag-skeleton-program"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v23.0 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>WTL without ATL - \u30a4\u30b0\u30c8\u30e9\u30f3\u30b9\u306e\u982d\u306e\u4e2d<\/title>\n<meta name=\"description\" content=\"WTL\u306e\u30e1\u30c3\u30bb\u30fc\u30b8\u30af\u30e9\u30c3\u30ab\u30fc\u3092ATL\u306a\u3057\u3067\u3082\u4f7f\u3048\u306a\u3044\u3060\u308d\u3046\u304b\u3068\u8a66\u3057\u3066\u307f\u307e\u3057\u305f\u3002\u4e00\u5fdc\u53ef\u80fd\u3067\u3057\u305f\u304c\u3001\u3042\u307e\u308a\u304d\u308c\u3044\u306a\u65b9\u6cd5\u3067\u306f\u3042\u308a\u307e\u305b\u3093\u3002\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/dev.activebasic.com\/egtra\/2013\/09\/21\/611\/\" \/>\n<meta property=\"og:locale\" content=\"ja_JP\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"WTL without ATL - \u30a4\u30b0\u30c8\u30e9\u30f3\u30b9\u306e\u982d\u306e\u4e2d\" \/>\n<meta property=\"og:description\" content=\"WTL\u306e\u30e1\u30c3\u30bb\u30fc\u30b8\u30af\u30e9\u30c3\u30ab\u30fc\u3092ATL\u306a\u3057\u3067\u3082\u4f7f\u3048\u306a\u3044\u3060\u308d\u3046\u304b\u3068\u8a66\u3057\u3066\u307f\u307e\u3057\u305f\u3002\u4e00\u5fdc\u53ef\u80fd\u3067\u3057\u305f\u304c\u3001\u3042\u307e\u308a\u304d\u308c\u3044\u306a\u65b9\u6cd5\u3067\u306f\u3042\u308a\u307e\u305b\u3093\u3002\" \/>\n<meta property=\"og:url\" content=\"https:\/\/dev.activebasic.com\/egtra\/2013\/09\/21\/611\/\" \/>\n<meta property=\"og:site_name\" content=\"\u30a4\u30b0\u30c8\u30e9\u30f3\u30b9\u306e\u982d\u306e\u4e2d\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/ysk.noh\" \/>\n<meta property=\"article:published_time\" content=\"2013-09-21T13:37:38+00:00\" \/>\n<meta name=\"author\" content=\"egtra\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@egtra\" \/>\n<meta name=\"twitter:site\" content=\"@egtra\" \/>\n<meta name=\"twitter:label1\" content=\"\u57f7\u7b46\u8005\" \/>\n\t<meta name=\"twitter:data1\" content=\"egtra\" \/>\n\t<meta name=\"twitter:label2\" content=\"\u63a8\u5b9a\u8aad\u307f\u53d6\u308a\u6642\u9593\" \/>\n\t<meta name=\"twitter:data2\" content=\"2\u5206\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/dev.activebasic.com\/egtra\/2013\/09\/21\/611\/\",\"url\":\"https:\/\/dev.activebasic.com\/egtra\/2013\/09\/21\/611\/\",\"name\":\"WTL without ATL - \u30a4\u30b0\u30c8\u30e9\u30f3\u30b9\u306e\u982d\u306e\u4e2d\",\"isPartOf\":{\"@id\":\"https:\/\/dev.activebasic.com\/egtra\/#website\"},\"datePublished\":\"2013-09-21T13:37:38+00:00\",\"dateModified\":\"2013-09-21T13:37:38+00:00\",\"author\":{\"@id\":\"https:\/\/dev.activebasic.com\/egtra\/#\/schema\/person\/8de756b2ff20b964f64594dfe8f18164\"},\"description\":\"WTL\u306e\u30e1\u30c3\u30bb\u30fc\u30b8\u30af\u30e9\u30c3\u30ab\u30fc\u3092ATL\u306a\u3057\u3067\u3082\u4f7f\u3048\u306a\u3044\u3060\u308d\u3046\u304b\u3068\u8a66\u3057\u3066\u307f\u307e\u3057\u305f\u3002\u4e00\u5fdc\u53ef\u80fd\u3067\u3057\u305f\u304c\u3001\u3042\u307e\u308a\u304d\u308c\u3044\u306a\u65b9\u6cd5\u3067\u306f\u3042\u308a\u307e\u305b\u3093\u3002\",\"breadcrumb\":{\"@id\":\"https:\/\/dev.activebasic.com\/egtra\/2013\/09\/21\/611\/#breadcrumb\"},\"inLanguage\":\"ja\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/dev.activebasic.com\/egtra\/2013\/09\/21\/611\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/dev.activebasic.com\/egtra\/2013\/09\/21\/611\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\u30db\u30fc\u30e0\",\"item\":\"https:\/\/dev.activebasic.com\/egtra\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"WTL without ATL\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/dev.activebasic.com\/egtra\/#website\",\"url\":\"https:\/\/dev.activebasic.com\/egtra\/\",\"name\":\"\u30a4\u30b0\u30c8\u30e9\u30f3\u30b9\u306e\u982d\u306e\u4e2d\",\"description\":\"\u982d\u306e\u4e2d\u306e\u304b\u3051\u3089\u3002ActiveBasic\u3092\u4e2d\u5fc3\u306b\u30d7\u30ed\u30b0\u30e9\u30df\u30f3\u30b0\u306e\u8a71\u3092\u307c\u3061\u307c\u3061\u3068\u3002\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/dev.activebasic.com\/egtra\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"ja\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/dev.activebasic.com\/egtra\/#\/schema\/person\/8de756b2ff20b964f64594dfe8f18164\",\"name\":\"egtra\",\"sameAs\":[\"https:\/\/x.com\/egtra\"],\"url\":\"https:\/\/dev.activebasic.com\/egtra\/author\/admin\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"WTL without ATL - \u30a4\u30b0\u30c8\u30e9\u30f3\u30b9\u306e\u982d\u306e\u4e2d","description":"WTL\u306e\u30e1\u30c3\u30bb\u30fc\u30b8\u30af\u30e9\u30c3\u30ab\u30fc\u3092ATL\u306a\u3057\u3067\u3082\u4f7f\u3048\u306a\u3044\u3060\u308d\u3046\u304b\u3068\u8a66\u3057\u3066\u307f\u307e\u3057\u305f\u3002\u4e00\u5fdc\u53ef\u80fd\u3067\u3057\u305f\u304c\u3001\u3042\u307e\u308a\u304d\u308c\u3044\u306a\u65b9\u6cd5\u3067\u306f\u3042\u308a\u307e\u305b\u3093\u3002","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/dev.activebasic.com\/egtra\/2013\/09\/21\/611\/","og_locale":"ja_JP","og_type":"article","og_title":"WTL without ATL - \u30a4\u30b0\u30c8\u30e9\u30f3\u30b9\u306e\u982d\u306e\u4e2d","og_description":"WTL\u306e\u30e1\u30c3\u30bb\u30fc\u30b8\u30af\u30e9\u30c3\u30ab\u30fc\u3092ATL\u306a\u3057\u3067\u3082\u4f7f\u3048\u306a\u3044\u3060\u308d\u3046\u304b\u3068\u8a66\u3057\u3066\u307f\u307e\u3057\u305f\u3002\u4e00\u5fdc\u53ef\u80fd\u3067\u3057\u305f\u304c\u3001\u3042\u307e\u308a\u304d\u308c\u3044\u306a\u65b9\u6cd5\u3067\u306f\u3042\u308a\u307e\u305b\u3093\u3002","og_url":"https:\/\/dev.activebasic.com\/egtra\/2013\/09\/21\/611\/","og_site_name":"\u30a4\u30b0\u30c8\u30e9\u30f3\u30b9\u306e\u982d\u306e\u4e2d","article_publisher":"https:\/\/www.facebook.com\/ysk.noh","article_published_time":"2013-09-21T13:37:38+00:00","author":"egtra","twitter_card":"summary_large_image","twitter_creator":"@egtra","twitter_site":"@egtra","twitter_misc":{"\u57f7\u7b46\u8005":"egtra","\u63a8\u5b9a\u8aad\u307f\u53d6\u308a\u6642\u9593":"2\u5206"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/dev.activebasic.com\/egtra\/2013\/09\/21\/611\/","url":"https:\/\/dev.activebasic.com\/egtra\/2013\/09\/21\/611\/","name":"WTL without ATL - \u30a4\u30b0\u30c8\u30e9\u30f3\u30b9\u306e\u982d\u306e\u4e2d","isPartOf":{"@id":"https:\/\/dev.activebasic.com\/egtra\/#website"},"datePublished":"2013-09-21T13:37:38+00:00","dateModified":"2013-09-21T13:37:38+00:00","author":{"@id":"https:\/\/dev.activebasic.com\/egtra\/#\/schema\/person\/8de756b2ff20b964f64594dfe8f18164"},"description":"WTL\u306e\u30e1\u30c3\u30bb\u30fc\u30b8\u30af\u30e9\u30c3\u30ab\u30fc\u3092ATL\u306a\u3057\u3067\u3082\u4f7f\u3048\u306a\u3044\u3060\u308d\u3046\u304b\u3068\u8a66\u3057\u3066\u307f\u307e\u3057\u305f\u3002\u4e00\u5fdc\u53ef\u80fd\u3067\u3057\u305f\u304c\u3001\u3042\u307e\u308a\u304d\u308c\u3044\u306a\u65b9\u6cd5\u3067\u306f\u3042\u308a\u307e\u305b\u3093\u3002","breadcrumb":{"@id":"https:\/\/dev.activebasic.com\/egtra\/2013\/09\/21\/611\/#breadcrumb"},"inLanguage":"ja","potentialAction":[{"@type":"ReadAction","target":["https:\/\/dev.activebasic.com\/egtra\/2013\/09\/21\/611\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/dev.activebasic.com\/egtra\/2013\/09\/21\/611\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\u30db\u30fc\u30e0","item":"https:\/\/dev.activebasic.com\/egtra\/"},{"@type":"ListItem","position":2,"name":"WTL without ATL"}]},{"@type":"WebSite","@id":"https:\/\/dev.activebasic.com\/egtra\/#website","url":"https:\/\/dev.activebasic.com\/egtra\/","name":"\u30a4\u30b0\u30c8\u30e9\u30f3\u30b9\u306e\u982d\u306e\u4e2d","description":"\u982d\u306e\u4e2d\u306e\u304b\u3051\u3089\u3002ActiveBasic\u3092\u4e2d\u5fc3\u306b\u30d7\u30ed\u30b0\u30e9\u30df\u30f3\u30b0\u306e\u8a71\u3092\u307c\u3061\u307c\u3061\u3068\u3002","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/dev.activebasic.com\/egtra\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"ja"},{"@type":"Person","@id":"https:\/\/dev.activebasic.com\/egtra\/#\/schema\/person\/8de756b2ff20b964f64594dfe8f18164","name":"egtra","sameAs":["https:\/\/x.com\/egtra"],"url":"https:\/\/dev.activebasic.com\/egtra\/author\/admin\/"}]}},"_links":{"self":[{"href":"https:\/\/dev.activebasic.com\/egtra\/wp-json\/wp\/v2\/posts\/611"}],"collection":[{"href":"https:\/\/dev.activebasic.com\/egtra\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/dev.activebasic.com\/egtra\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/dev.activebasic.com\/egtra\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/dev.activebasic.com\/egtra\/wp-json\/wp\/v2\/comments?post=611"}],"version-history":[{"count":0,"href":"https:\/\/dev.activebasic.com\/egtra\/wp-json\/wp\/v2\/posts\/611\/revisions"}],"wp:attachment":[{"href":"https:\/\/dev.activebasic.com\/egtra\/wp-json\/wp\/v2\/media?parent=611"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/dev.activebasic.com\/egtra\/wp-json\/wp\/v2\/categories?post=611"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/dev.activebasic.com\/egtra\/wp-json\/wp\/v2\/tags?post=611"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}