Added some prototypes to function declarations.

This commit is contained in:
Alexandre Julliard 2002-01-15 20:54:41 +00:00
parent f1d80a3986
commit 7fd287d575
1 changed files with 8 additions and 8 deletions

View File

@ -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"]],
); );
################################################################ ################################################################