-
Notifications
You must be signed in to change notification settings - Fork 977
Open
Labels
C-feature-requestCategory: a feature request (not decided/implemented)Category: a feature request (not decided/implemented)P-mediumMedium priorityMedium priority
Description
Just how fn_args_layout works for function declarations, but make it work for function calls as well.
eg:
use super::*;
pub fn create_window_ex_w() {
CreateWindowExW(dwExStyle, lpClassName, lpWindowName, dwStyle, X, Y, nWidth, nHeight, hWndParent, hMenu, hInstance, lpParam)
}should become (depending on line with and such) something like this:
use super::*;
pub fn create_window_ex_w() {
CreateWindowExW(dwExStyle, lpClassName, lpWindowName,
dwStyle, X, Y, nWidth, nHeight, hWndParent, hMenu,
hInstance, lpParam)
}instead of going to a completely vertical layout.
wagmi-lotech and zeyonaut
Metadata
Metadata
Assignees
Labels
C-feature-requestCategory: a feature request (not decided/implemented)Category: a feature request (not decided/implemented)P-mediumMedium priorityMedium priority