1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

doc: better [windows_stdcall] info (#5780)

This commit is contained in:
vitalyster 2020-07-10 14:14:08 +03:00 committed by GitHub
parent 75b7b9564a
commit 1a9690cc62
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2161,9 +2161,9 @@ fn bar() {
[typedef]
struct C.Foo { }
// Declare a function with WINAPI
// Used in Win32 API code when you need to pass callback function
[windows_stdcall]
fn C.WinFunction()
fn C.DefWindowProc(hwnd int, msg int, lparam int, wparam int)
```