Skip to content
Snippets Groups Projects
Commit 7fd287d5 authored by Alexandre Julliard's avatar Alexandre Julliard
Browse files

Added some prototypes to function declarations.

parent f1d80a39
No related branches found
No related tags found
No related merge requests found
......@@ -9,14 +9,14 @@ use wine;
wine::declare( "kernel32",
SetLastError => "void",
GetLastError => "int",
GlobalAddAtomA => "word",
GlobalGetAtomNameA => "int",
GetCurrentThread => "int",
GetExitCodeThread => "int",
GetModuleHandleA => "int",
GetProcAddress => "int",
lstrcatA => "ptr"
GetLastError => ["int", []],
GlobalAddAtomA => ["word",["str"]],
GlobalGetAtomNameA => ["int", ["int","ptr","int"]],
GetCurrentThread => ["int", []],
GetExitCodeThread => ["int", ["int","ptr"]],
GetModuleHandleA => ["int", ["str"]],
GetProcAddress => ["int", ["long","str"]],
lstrcatA => ["str", ["str","str"]],
);
################################################################
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment