Added some prototypes to function declarations.
This commit is contained in:
parent
f1d80a3986
commit
7fd287d575
|
@ -9,14 +9,14 @@ use wine;
|
||||||
|
|
||||||
wine::declare( "kernel32",
|
wine::declare( "kernel32",
|
||||||
SetLastError => "void",
|
SetLastError => "void",
|
||||||
GetLastError => "int",
|
GetLastError => ["int", []],
|
||||||
GlobalAddAtomA => "word",
|
GlobalAddAtomA => ["word",["str"]],
|
||||||
GlobalGetAtomNameA => "int",
|
GlobalGetAtomNameA => ["int", ["int","ptr","int"]],
|
||||||
GetCurrentThread => "int",
|
GetCurrentThread => ["int", []],
|
||||||
GetExitCodeThread => "int",
|
GetExitCodeThread => ["int", ["int","ptr"]],
|
||||||
GetModuleHandleA => "int",
|
GetModuleHandleA => ["int", ["str"]],
|
||||||
GetProcAddress => "int",
|
GetProcAddress => ["int", ["long","str"]],
|
||||||
lstrcatA => "ptr"
|
lstrcatA => ["str", ["str","str"]],
|
||||||
);
|
);
|
||||||
|
|
||||||
################################################################
|
################################################################
|
||||||
|
|
Loading…
Reference in New Issue