Skip to content

Commit

Permalink
fix(core) javadoc errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Spasi committed Oct 4, 2024
1 parent 2b12f5e commit dea553c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1150,7 +1150,7 @@ public static int nUnregisterClass(long _GetLastError, long lpClassName, long hI
* @param _GetLastError optionally returns the result of {@code GetLastError()} after this function is called
* @param lpClassName a null-terminated string or a class atom. If {@code lpClassName} is a string, it specifies the window class name. This class name must have been
* registered by a previous call to the {@link #RegisterClassEx} function. System classes, such as dialog box controls, cannot be unregistered. If this
* parameter is an atom, it must be a class atom created by a previous call to the {@link #RegisterClassEx} function. The atom must be in the low-order
* parameter is an atom, it must be a class atom created by a previous call to the {@code RegisterClassEx} function. The atom must be in the low-order
* word of {@code lpClassName}; the high-order word must be zero.
* @param hInstance a handle to the instance of the module that created the class
*/
Expand All @@ -1169,7 +1169,7 @@ public static boolean UnregisterClass(@Nullable @NativeType("DWORD *") IntBuffer
* @param _GetLastError optionally returns the result of {@code GetLastError()} after this function is called
* @param lpClassName a null-terminated string or a class atom. If {@code lpClassName} is a string, it specifies the window class name. This class name must have been
* registered by a previous call to the {@link #RegisterClassEx} function. System classes, such as dialog box controls, cannot be unregistered. If this
* parameter is an atom, it must be a class atom created by a previous call to the {@link #RegisterClassEx} function. The atom must be in the low-order
* parameter is an atom, it must be a class atom created by a previous call to the {@code RegisterClassEx} function. The atom must be in the low-order
* word of {@code lpClassName}; the high-order word must be zero.
* @param hInstance a handle to the instance of the module that created the class
*/
Expand Down Expand Up @@ -1204,7 +1204,7 @@ public static long nCreateWindowEx(long _GetLastError, int dwExStyle, long lpCla
*
* @param _GetLastError optionally returns the result of {@code GetLastError()} after this function is called
* @param dwExStyle the extended window style of the window being created
* @param lpClassName a null-terminated string or a class atom created by a previous call to the {@link #RegisterClassEx(WNDCLASSEX)} function.
* @param lpClassName a null-terminated string or a class atom created by a previous call to the {@code RegisterClassEx} function.
* @param lpWindowName the window name. If the window style specifies a title bar, the window title pointed to by {@code lpWindowName} is displayed in the title bar.
* @param dwStyle the style of the window being created
* @param x the initial horizontal position of the window
Expand Down Expand Up @@ -1232,7 +1232,7 @@ public static long CreateWindowEx(@Nullable @NativeType("DWORD *") IntBuffer _Ge
*
* @param _GetLastError optionally returns the result of {@code GetLastError()} after this function is called
* @param dwExStyle the extended window style of the window being created
* @param lpClassName a null-terminated string or a class atom created by a previous call to the {@link #RegisterClassEx(WNDCLASSEX)} function.
* @param lpClassName a null-terminated string or a class atom created by a previous call to the {@code RegisterClassEx} function.
* @param lpWindowName the window name. If the window style specifies a title bar, the window title pointed to by {@code lpWindowName} is displayed in the title bar.
* @param dwStyle the style of the window being created
* @param x the initial horizontal position of the window
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -941,7 +941,7 @@ val User32 = "User32".nativeClass(Module.CORE_WINDOWS, nativeSubPath = "windows"
"""
a null-terminated string or a class atom. If {@code lpClassName} is a string, it specifies the window class name. This class name must have been
registered by a previous call to the #RegisterClassEx() function. System classes, such as dialog box controls, cannot be unregistered. If this
parameter is an atom, it must be a class atom created by a previous call to the #RegisterClassEx() function. The atom must be in the low-order
parameter is an atom, it must be a class atom created by a previous call to the {@code RegisterClassEx} function. The atom must be in the low-order
word of {@code lpClassName}; the high-order word must be zero.
"""
),
Expand All @@ -956,7 +956,7 @@ val User32 = "User32".nativeClass(Module.CORE_WINDOWS, nativeSubPath = "windows"
DWORD("dwExStyle", "the extended window style of the window being created"),
nullable..LPCTSTR(
"lpClassName",
"a null-terminated string or a class atom created by a previous call to the #RegisterClassEx(WNDCLASSEX) function."
"a null-terminated string or a class atom created by a previous call to the {@code RegisterClassEx} function."
),
nullable..LPCTSTR(
"lpWindowName",
Expand Down

0 comments on commit dea553c

Please sign in to comment.