{"id":112484,"date":"2026-06-29T07:00:00","date_gmt":"2026-06-29T14:00:00","guid":{"rendered":"https:\/\/devblogs.microsoft.com\/oldnewthing\/?p=112484"},"modified":"2026-06-29T20:58:08","modified_gmt":"2026-06-30T03:58:08","slug":"20260629-00","status":"publish","type":"post","link":"https:\/\/devblogs.microsoft.com\/oldnewthing\/20260629-00\/?p=112484","title":{"rendered":"The evolution of window and class extra bytes in Windows"},"content":{"rendered":"<p>Windows provides a family of functions for accessing so-called &#8220;extra bytes&#8221;. There are two categories of extra bytes: Class extra bytes (which belong to the window class) and window extra bytes (which belong to each window created from that class). Applications can request extra bytes at class registration, and those are accessed at increasing offsets starting at zero. The system also defines a number of extra bytes, and those use negative offsets.<\/p>\n<p>We&#8217;re going to look at the system-defined offsets.<\/p>\n<p>In 16-bit Windows, these were the available extra bytes and the function you used to read them:<\/p>\n<table style=\"border-collapse: collapse;\" border=\"1\" cellspacing=\"0\" cellpadding=\"3\">\n<tbody>\n<tr>\n<th>Name<\/th>\n<th>Size<\/th>\n<th>Accessor<\/th>\n<th>Notes<\/th>\n<\/tr>\n<tr>\n<td><tt>GCW_MENUNAME<\/tt><\/td>\n<td>int16_t<\/td>\n<td><tt>GetClassWord<\/tt><\/td>\n<td>&nbsp;<\/td>\n<\/tr>\n<tr>\n<td><tt>GCW_HBRBACKGROUND<\/tt><\/td>\n<td>int16_t<\/td>\n<td><tt>GetClassWord<\/tt><\/td>\n<td>&nbsp;<\/td>\n<\/tr>\n<tr>\n<td><tt>GCW_HCURSOR<\/tt><\/td>\n<td>int16_t<\/td>\n<td><tt>GetClassWord<\/tt><\/td>\n<td>&nbsp;<\/td>\n<\/tr>\n<tr>\n<td><tt>GCW_HICON<\/tt><\/td>\n<td>int16_t<\/td>\n<td><tt>GetClassWord<\/tt><\/td>\n<td>&nbsp;<\/td>\n<\/tr>\n<tr>\n<td><tt>GCW_HMODULE<\/tt><\/td>\n<td>int16_t<\/td>\n<td><tt>GetClassWord<\/tt><\/td>\n<td>&nbsp;<\/td>\n<\/tr>\n<tr>\n<td><tt>GCW_CBWNDEXTRA<\/tt><\/td>\n<td>int16_t<\/td>\n<td><tt>GetClassWord<\/tt><\/td>\n<td>&nbsp;<\/td>\n<\/tr>\n<tr>\n<td><tt>GCW_CBCLSEXTRA<\/tt><\/td>\n<td>int16_t<\/td>\n<td><tt>GetClassWord<\/tt><\/td>\n<td>&nbsp;<\/td>\n<\/tr>\n<tr>\n<td><tt>GCL_WNDPROC<\/tt><\/td>\n<td>int32_t<\/td>\n<td><tt>GetClassLong<\/tt><\/td>\n<td>&nbsp;<\/td>\n<\/tr>\n<tr>\n<td><tt>GCW_STYLE<\/tt><\/td>\n<td>int16_t<\/td>\n<td><tt>GetClassWord<\/tt><\/td>\n<td>&nbsp;<\/td>\n<\/tr>\n<tr>\n<td><tt>GCW_ATOM<\/tt><\/td>\n<td>int16_t<\/td>\n<td><tt>GetClassWord<\/tt><\/td>\n<td>Added in Windows 3.1<\/td>\n<\/tr>\n<tr>\n<td><tt>GWL_WNDPROC<\/tt><\/td>\n<td>int32_t<\/td>\n<td><tt>GetWindowLong<\/tt><\/td>\n<td>&nbsp;<\/td>\n<\/tr>\n<tr>\n<td><tt>GWW_HINSTANCE<\/tt><\/td>\n<td>int16_t<\/td>\n<td><tt>GetWindowWord<\/tt><\/td>\n<td>&nbsp;<\/td>\n<\/tr>\n<tr>\n<td><tt>GWW_HWNDPARENT<\/tt><\/td>\n<td>int16_t<\/td>\n<td><tt>GetWindowWord<\/tt><\/td>\n<td>&nbsp;<\/td>\n<\/tr>\n<tr>\n<td><tt>GWW_ID<\/tt><\/td>\n<td>int16_t<\/td>\n<td><tt>GetWindowWord<\/tt><\/td>\n<td>&nbsp;<\/td>\n<\/tr>\n<tr>\n<td><tt>GWL_STYLE<\/tt><\/td>\n<td>int32_t<\/td>\n<td><tt>GetWindowLong<\/tt><\/td>\n<td>&nbsp;<\/td>\n<\/tr>\n<tr>\n<td><tt>GWL_EXSTYLE<\/tt><\/td>\n<td>int32_t<\/td>\n<td><tt>GetWindowLong<\/tt><\/td>\n<td>Added in Windows 3.0<\/td>\n<\/tr>\n<tr>\n<td><tt>DWL_MSGRESULT<\/tt><\/td>\n<td>int32_t<\/td>\n<td><tt>GetWindowLong<\/tt><\/td>\n<td>For dialog windows<\/td>\n<\/tr>\n<tr>\n<td><tt>DWL_DLGPROC<\/tt><\/td>\n<td>int32_t<\/td>\n<td><tt>GetWindowLong<\/tt><\/td>\n<td>For dialog windows<\/td>\n<\/tr>\n<tr>\n<td><tt>DWL_USER<\/tt><\/td>\n<td>int32_t<\/td>\n<td><tt>GetWindowLong<\/tt><\/td>\n<td>For dialog windows<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>There is clearly a naming pattern here for class and window bytes.<\/p>\n<p>The first letter <tt>G<\/tt> stands for <tt>Get<\/tt>. The second letter <tt>C<\/tt> or <tt>W<\/tt> stands for <tt>Class<\/tt> or <tt>Window<\/tt>. And the third letter <tt>W<\/tt> or <tt>L<\/tt> stands for <tt>Word<\/tt> or <tt>Long<\/tt>.\u00b9<\/p>\n<p>For window bytes that apply only to dialog windows, the first letter changes to <tt>D<\/tt> for &#8220;dialog&#8221;. These values are zero or positive, since they are really just extra bytes registered to the standard dialog class.<\/p>\n<p>Now, in 16-bit Windows, handles were 16-bit values, but in 32-bit Windows, they expand to 32-bit values, so 32-bit Windows changed the functions from <code>Get\u00adSomething\u00ad<span style=\"border: solid 1px currentcolor;\">Word<\/span><\/code> to <code>Get\u00adSomething\u00ad<span style=\"border: solid 1px currentcolor;\">Long<\/span><\/code>, and the prefixes correspondingly changed from <tt>W<\/tt> to from <tt>L<\/tt>. So our table now looks like this:<\/p>\n<table style=\"border-collapse: collapse;\" border=\"1\" cellspacing=\"0\" cellpadding=\"3\">\n<tbody>\n<tr>\n<th>Name<\/th>\n<th>16-bit prefix\/size<\/th>\n<th>32-bit prefix\/size<\/th>\n<\/tr>\n<tr>\n<td><tt>MENUNAME<\/tt><\/td>\n<td><tt>GCW_<\/tt> int16_t<\/td>\n<td><tt>GCL_<\/tt> int32_t \u25f1<\/td>\n<\/tr>\n<tr>\n<td><tt>HBRBACKGROUND<\/tt><\/td>\n<td><tt>GCW_<\/tt> int16_t<\/td>\n<td><tt>GCL_<\/tt> int32_t \u25f1<\/td>\n<\/tr>\n<tr>\n<td><tt>HCURSOR<\/tt><\/td>\n<td><tt>GCW_<\/tt> int16_t<\/td>\n<td><tt>GCL_<\/tt> int32_t \u25f1<\/td>\n<\/tr>\n<tr>\n<td><tt>HICON<\/tt><\/td>\n<td><tt>GCW_<\/tt> int16_t<\/td>\n<td><tt>GCL_<\/tt> int32_t \u25f1<\/td>\n<\/tr>\n<tr>\n<td><tt>HMODULE<\/tt><\/td>\n<td><tt>GCW_<\/tt> int16_t<\/td>\n<td><tt>GCL_<\/tt> int32_t \u25f1<\/td>\n<\/tr>\n<tr>\n<td><tt>CBWNDEXTRA<\/tt><\/td>\n<td><tt>GCW_<\/tt> int16_t<\/td>\n<td><tt>GCL_<\/tt> int32_t \u25f1<\/td>\n<\/tr>\n<tr>\n<td><tt>CBCLSEXTRA<\/tt><\/td>\n<td><tt>GCW_<\/tt> int16_t<\/td>\n<td><tt>GCL_<\/tt> int32_t \u25f1<\/td>\n<\/tr>\n<tr>\n<td><tt>WNDPROC<\/tt><\/td>\n<td><tt>GCL_<\/tt> int32_t<\/td>\n<td><tt>GCL_<\/tt> int32_t \u25f1<\/td>\n<\/tr>\n<tr>\n<td><tt>STYLE<\/tt><\/td>\n<td><tt>GCW_<\/tt> int16_t<\/td>\n<td><tt>GCL_<\/tt> int32_t \u25f1<\/td>\n<\/tr>\n<tr>\n<td><tt>ATOM<\/tt><\/td>\n<td><tt>GCW_<\/tt> int16_t<\/td>\n<td><tt>GCW_<\/tt> int16_t<\/td>\n<\/tr>\n<tr>\n<td><tt>HICONSM<\/tt><\/td>\n<td>&nbsp;<\/td>\n<td><tt>GCL_<\/tt> int32_t \ud83d\udca5<\/td>\n<\/tr>\n<tr>\n<td><tt>WNDPROC<\/tt><\/td>\n<td><tt>GWL_<\/tt> int32_t<\/td>\n<td><tt>GWL_<\/tt> int32_t \u25f1<\/td>\n<\/tr>\n<tr>\n<td><tt>HWNDPARENT<\/tt><\/td>\n<td><tt>GWW_<\/tt> int16_t<\/td>\n<td><tt>GWL_<\/tt> int32_t \u25f1<\/td>\n<\/tr>\n<tr>\n<td><tt>ID<\/tt><\/td>\n<td><tt>GWW_<\/tt> int16_t<\/td>\n<td><tt>GWL_<\/tt> int32_t \u25f1<\/td>\n<\/tr>\n<tr>\n<td><tt>STYLE<\/tt><\/td>\n<td><tt>GWL_<\/tt> int32_t<\/td>\n<td><tt>GWL_<\/tt> int32_t<\/td>\n<\/tr>\n<tr>\n<td><tt>EXSTYLE<\/tt><\/td>\n<td><tt>GWL_<\/tt> int32_t<\/td>\n<td><tt>GWL_<\/tt> int32_t<\/td>\n<\/tr>\n<tr>\n<td><tt>USERDATA<\/tt><\/td>\n<td>&nbsp;<\/td>\n<td><tt>GWL_<\/tt> int32_t \ud83d\udca5<\/td>\n<\/tr>\n<tr>\n<td><tt>MSGRESULT<\/tt><\/td>\n<td><tt>DWL_<\/tt> int32_t<\/td>\n<td><tt>DWL_<\/tt> int32_t<\/td>\n<\/tr>\n<tr>\n<td><tt>DLGPROC<\/tt><\/td>\n<td><tt>DWL_<\/tt> int32_t<\/td>\n<td><tt>DWL_<\/tt> int32_t<\/td>\n<\/tr>\n<tr>\n<td><tt>USER<\/tt><\/td>\n<td><tt>DWL_<\/tt> int32_t<\/td>\n<td><tt>DWL_<\/tt> int32_t<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>The \u25f1 symbol represents a value that got bigger, and the \ud83d\udca5 symbol represents values that did not exist in 16-bit Windows.<\/p>\n<p>Even though control IDs are typically small integers, the space for them was expanded from a 16-bit value to a 32-bit value because <a title=\"Why are timer IDs and dialog control IDs 64-bit values on 64-bit Windows? Did you really expect people to create more than 4 billion timers or dialog controls?\" href=\"https:\/\/devblogs.microsoft.com\/oldnewthing\/20191010-00\/?p=102978\"> some people were using it to hold pointers or handles<\/a>. (One way to create a process-wide unique number is to <a title=\"A window can't have two timers with the same ID, so how do I assign an ID that nobody else is using?\" href=\"https:\/\/devblogs.microsoft.com\/oldnewthing\/20191009-00\/?p=102974\"> allocate memory and use its address<\/a>.)<\/p>\n<p>The next step in the evolution of extra bytes is the conversion from 32-bit to 64-bit Windows. Pointers and handles expand to 64-bit values on 64-bit Windows, so all of the extra bytes that are used to (or could be used to) hold a handle or pointer were expanded to a 64-bit version.<\/p>\n<p>To make it possible to write code that targets both 32-bit and 64-bit Windows, the design of 64-bit Windows didn&#8217;t make the hard break that 32-bit Windows did from 16-bit Windows. Instead, they introduced new functions that accept pointer-sized integers, which are 32-bit values on 32-bit Windows and 64-bit values on 64-bit Windows. That way, you just use those new functions everywhere, and they will expand on 64-bit systems and remain the same on 32-bit systems.<\/p>\n<p>The new functions have names like <code>Get\u00adWindow\u00adLong\u00ad<span style=\"border: solid 1px currentcolor;\">Ptr<\/span><\/code>, and the corresponding prefixes were changed to <code>GWLP_<\/code> and so on.<\/p>\n<table style=\"border-collapse: collapse;\" border=\"1\" cellspacing=\"0\" cellpadding=\"3\">\n<tbody>\n<tr>\n<th>Name<\/th>\n<th>16-bit prefix\/size<\/th>\n<th>32-bit prefix\/size<\/th>\n<th>32\/64-bit prefix\/size<\/th>\n<\/tr>\n<tr>\n<td><tt>MENUNAME<\/tt><\/td>\n<td><tt>GCW_<\/tt> int16_t<\/td>\n<td><tt>GCL_<\/tt> int32_t \u25f1<\/td>\n<td><tt>GCLP_<\/tt> intptr_t \u25f1<\/td>\n<\/tr>\n<tr>\n<td><tt>HBRBACKGROUND<\/tt><\/td>\n<td><tt>GCW_<\/tt> int16_t<\/td>\n<td><tt>GCL_<\/tt> int32_t \u25f1<\/td>\n<td><tt>GCLP_<\/tt> intptr_t \u25f1<\/td>\n<\/tr>\n<tr>\n<td><tt>HCURSOR<\/tt><\/td>\n<td><tt>GCW_<\/tt> int16_t<\/td>\n<td><tt>GCL_<\/tt> int32_t \u25f1<\/td>\n<td><tt>GCLP_<\/tt> intptr_t \u25f1<\/td>\n<\/tr>\n<tr>\n<td><tt>HICON<\/tt><\/td>\n<td><tt>GCW_<\/tt> int16_t<\/td>\n<td><tt>GCL_<\/tt> int32_t \u25f1<\/td>\n<td><tt>GCLP_<\/tt> intptr_t \u25f1<\/td>\n<\/tr>\n<tr>\n<td><tt>HMODULE<\/tt><\/td>\n<td><tt>GCW_<\/tt> int16_t<\/td>\n<td><tt>GCL_<\/tt> int32_t \u25f1<\/td>\n<td><tt>GCLP_<\/tt> intptr_t \u25f1<\/td>\n<\/tr>\n<tr>\n<td><tt>CBWNDEXTRA<\/tt><\/td>\n<td><tt>GCW_<\/tt> int16_t<\/td>\n<td><tt>GCL_<\/tt> int32_t \u25f1<\/td>\n<td><tt>GCL_<\/tt> int32_t<\/td>\n<\/tr>\n<tr>\n<td><tt>CBCLSEXTRA<\/tt><\/td>\n<td><tt>GCW_<\/tt> int16_t<\/td>\n<td><tt>GCL_<\/tt> int32_t \u25f1<\/td>\n<td><tt>GCL_<\/tt> int32_t<\/td>\n<\/tr>\n<tr>\n<td><tt>WNDPROC<\/tt><\/td>\n<td><tt>GCL_<\/tt> int32_t<\/td>\n<td><tt>GCL_<\/tt> int32_t \u25f1<\/td>\n<td><tt>GCLP_<\/tt> intptr_t \u25f1<\/td>\n<\/tr>\n<tr>\n<td><tt>STYLE<\/tt><\/td>\n<td><tt>GCW_<\/tt> int16_t<\/td>\n<td><tt>GCL_<\/tt> int32_t \u25f1<\/td>\n<td><tt>GCL_<\/tt> int32_t<\/td>\n<\/tr>\n<tr>\n<td><tt>ATOM<\/tt><\/td>\n<td><tt>GCW_<\/tt> int16_t<\/td>\n<td><tt>GCW_<\/tt> int16_t<\/td>\n<td><tt>GCW_<\/tt> int16_t<\/td>\n<\/tr>\n<tr>\n<td><tt>HICONSM<\/tt><\/td>\n<td>&nbsp;<\/td>\n<td><tt>GCL_<\/tt> int32_t \ud83d\udca5<\/td>\n<td><tt>GCLP_<\/tt> intptr_t \u25f1<\/td>\n<\/tr>\n<tr>\n<td><tt>WNDPROC<\/tt><\/td>\n<td><tt>GWL_<\/tt> int32_t<\/td>\n<td><tt>GWL_<\/tt> int32_t \u25f1<\/td>\n<td><tt>GWLP_<\/tt> intptr_t \u25f1<\/td>\n<\/tr>\n<tr>\n<td><tt>HWNDPARENT<\/tt><\/td>\n<td><tt>GWW_<\/tt> int16_t<\/td>\n<td><tt>GWL_<\/tt> int32_t \u25f1<\/td>\n<td><tt>GWLP_<\/tt> intptr_t \u25f1<\/td>\n<\/tr>\n<tr>\n<td><tt>ID<\/tt><\/td>\n<td><tt>GWW_<\/tt> int16_t<\/td>\n<td><tt>GWL_<\/tt> int32_t \u25f1<\/td>\n<td><tt>GWLP_<\/tt> intptr_t \u25f1<\/td>\n<\/tr>\n<tr>\n<td><tt>STYLE<\/tt><\/td>\n<td><tt>GWL_<\/tt> int32_t<\/td>\n<td><tt>GWL_<\/tt> int32_t<\/td>\n<td><tt>GWL_<\/tt> int32_t<\/td>\n<\/tr>\n<tr>\n<td><tt>EXSTYLE<\/tt><\/td>\n<td><tt>GWL_<\/tt> int32_t<\/td>\n<td><tt>GWL_<\/tt> int32_t<\/td>\n<td><tt>GWL_<\/tt> int32_t<\/td>\n<\/tr>\n<tr>\n<td><tt>USERDATA<\/tt><\/td>\n<td>&nbsp;<\/td>\n<td><tt>GWL_<\/tt> int32_t \ud83d\udca5<\/td>\n<td><tt>GWLP_<\/tt> intptr_t \u25f1<\/td>\n<\/tr>\n<tr>\n<td><tt>MSGRESULT<\/tt><\/td>\n<td><tt>DWL_<\/tt> int32_t<\/td>\n<td><tt>DWL_<\/tt> int32_t<\/td>\n<td><tt>DWLP_<\/tt> intptr_t \u25f1<\/td>\n<\/tr>\n<tr>\n<td><tt>DLGPROC<\/tt><\/td>\n<td><tt>DWL_<\/tt> int32_t<\/td>\n<td><tt>DWL_<\/tt> int32_t<\/td>\n<td><tt>DWLP_<\/tt> intptr_t \u25f1<\/td>\n<\/tr>\n<tr>\n<td><tt>USER<\/tt><\/td>\n<td><tt>DWL_<\/tt> int32_t<\/td>\n<td><tt>DWL_<\/tt> int32_t<\/td>\n<td><tt>DWLP_<\/tt> intptr_t \u25f1<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>From the prefix on the name of the extra bytes, you can read off which function it is meant to be used with.<\/p>\n<table style=\"border-collapse: collapse;\" border=\"1\" cellspacing=\"0\" cellpadding=\"3\">\n<tbody>\n<tr>\n<th>Prefix<\/th>\n<th>Function<\/th>\n<\/tr>\n<tr>\n<td><tt>GCW_<\/tt> \u2194 <tt><u>G<\/u>et<u>C<\/u>lass<u>W<\/u>ord<\/tt><\/td>\n<td><tt>GWW_<\/tt> \u2194 <tt><u>G<\/u>et<u>W<\/u>indow<u>W<\/u>ord<\/tt><\/td>\n<\/tr>\n<tr>\n<td><tt>GCL_<\/tt> \u2194 <tt><u>G<\/u>et<u>C<\/u>lass<u>L<\/u>ong<\/tt><\/td>\n<td><tt>GWL_<\/tt> \u2194 <tt><u>G<\/u>et<u>W<\/u>indow<u>L<\/u>ong<\/tt><\/td>\n<\/tr>\n<tr>\n<td><tt>GCLP_<\/tt> \u2194 <tt><u>G<\/u>et<u>C<\/u>lass<u>L<\/u>ong<u>P<\/u>tr<\/tt><\/td>\n<td><tt>GWLP_<\/tt> \u2194 <tt><u>G<\/u>et<u>W<\/u>indow<u>L<\/u>ong<u>P<\/u>tr<\/tt><\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>The weirdo is <tt>DWLP_<\/tt> because it needs to encode both the type of window that it can be used with (D = dialog) as well as the function name it goes with (<code><u>W<\/u>indow<u>L<\/u>ong<u>P<\/u>tr<\/code>).<\/p>\n<p>As a concession, Windows lets you pass <tt>GCL_<\/tt> and <tt>GWL_<\/tt> values to <code>Get\u00adClass\u00adLong\u00adPtr<\/code> and <code>Get\u00adWindow\u00adLong\u00adPtr<\/code> (respectively) even though they are intended to be used with <code>Get\u00adClass\u00adLong<\/code> and <code>Get\u00adWindow\u00adLong<\/code> (respectively). If you do that, you get the corresponding 32-bit value zero-extended if necessary to be the size of a pointer.\u00b2 This is seen primarily in the case of <tt>GWL_ID<\/tt> because most people don&#8217;t use the full range of IDs, so if you&#8217;re willing to live within the 32-bit subset, you can just pretend that the values are not pointer-sized.\u00b3<\/p>\n<p>&#8220;Why bother changing all the prefixes? Doesn&#8217;t that just create a lot of busy work for people porting from 32-bit code to 64-bit code?&#8221;<\/p>\n<p>Yes, but it&#8217;s good busy work. The point is to force build breaks at places where you need to make fixes, because you have to call the function that accesses a pointer-sized integer rather than a 32-bit integer; otherwise you suffer from integer truncation bugs.<\/p>\n<p>\u00b9 This is a common prefixing convention for classic Win32. For example, the operation parameter to <code>Show\u00adWindow<\/code> is prefixed <code>SW_<\/code>; the flags to <code>Set\u00adWindow\u00adPos<\/code> are prefixed <code>SWP_<\/code>; and the relationship parameter for <code>Get\u00adWindow<\/code> is prefixed <code>GW_<\/code>.<\/p>\n<p>\u00b2 The use of the <tt>GWL_<\/tt> values with <code>Set\u00adWindow\u00adLong\u00adPtr<\/code> is a bit more problematic. It looks like you&#8217;re storing a pointer-sized integer, but only the bottom 32 bits are honored.<\/p>\n<p>\u00b3 The <tt>ID<\/tt> is unusual in that it is defined both as <tt>GWL_ID<\/tt> and <tt>GWLP_ID<\/tt>. All of the other values are defined with only one prefix.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>The intended usage is encoded in the prefix.<\/p>\n","protected":false},"author":1069,"featured_media":111744,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[1],"tags":[25],"class_list":["post-112484","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-oldnewthing","tag-code"],"acf":[],"blog_post_summary":"<p>The intended usage is encoded in the prefix.<\/p>\n","_links":{"self":[{"href":"https:\/\/devblogs.microsoft.com\/oldnewthing\/wp-json\/wp\/v2\/posts\/112484","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/devblogs.microsoft.com\/oldnewthing\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/devblogs.microsoft.com\/oldnewthing\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/devblogs.microsoft.com\/oldnewthing\/wp-json\/wp\/v2\/users\/1069"}],"replies":[{"embeddable":true,"href":"https:\/\/devblogs.microsoft.com\/oldnewthing\/wp-json\/wp\/v2\/comments?post=112484"}],"version-history":[{"count":1,"href":"https:\/\/devblogs.microsoft.com\/oldnewthing\/wp-json\/wp\/v2\/posts\/112484\/revisions"}],"predecessor-version":[{"id":112487,"href":"https:\/\/devblogs.microsoft.com\/oldnewthing\/wp-json\/wp\/v2\/posts\/112484\/revisions\/112487"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/devblogs.microsoft.com\/oldnewthing\/wp-json\/wp\/v2\/media\/111744"}],"wp:attachment":[{"href":"https:\/\/devblogs.microsoft.com\/oldnewthing\/wp-json\/wp\/v2\/media?parent=112484"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/devblogs.microsoft.com\/oldnewthing\/wp-json\/wp\/v2\/categories?post=112484"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/devblogs.microsoft.com\/oldnewthing\/wp-json\/wp\/v2\/tags?post=112484"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}