Commit fa29de7c authored by Patrik Stridvall's avatar Patrik Stridvall Committed by Alexandre Julliard

- Minor API file update.

- Turned on --documentation-arguments by default.
parent 88e24537
......@@ -83,6 +83,10 @@ dlls/icmp
dlls/imagehlp
% dlls/imm32/imm.spec
dlls/imm32
% dlls/imm32/imm32.spec
dlls/imm32
......@@ -429,7 +433,14 @@ dlls/winmm
% dlls/winmm/winmm.spec
dlls/winmm
windows
% dlls/winnls/winnls.spec
dlls/winnls
% dlls/winnls/winnls32.spec
dlls/winnls
% dlls/winsock/winsock.spec
......
......@@ -6,9 +6,7 @@ LONG
%ptr
LHCLIENTDOC *
LPOLECLIENT
LPOLEOBJECT
LPOLEOBJECT *
%segptr
......
%long
DWORD
LPARAM
%ptr
HINF16 *
LPBYTE
LPDWORD
%ptr # --forbidden
HINF16 *
LPHKEY
LPWORD
LPLOGDISKDESC
LPLPDEVICE_INFO16
VIFPROC
%str
......@@ -22,7 +22,7 @@ LPSTR
void
%word # --forbidden
%word
INT16
LOGDISKID16
......
......@@ -17,6 +17,7 @@ UCHAR
clock_t
size_t
time_t
unsigned char
%long # --forbidden
......@@ -32,6 +33,8 @@ LONGLONG
CHAR *
CRTDLL_FILE *
CRTDLL_fpos_t *
LPCSTR *
LPCVOID
LPDWORD
LPDWORD *
......@@ -44,6 +47,7 @@ PCONTEXT
PEXCEPTION_FRAME
PEXCEPTION_FRAME *
PEXCEPTION_RECORD
PINT
VOID *
WCHAR *
_INITTERMFUN *
......@@ -56,7 +60,6 @@ time_t *
struct _heapinfo *
struct _utimbuf *
struct _exception *
fpos_t *
diskfree_t *
unsigned char *
va_list
......
......@@ -3,6 +3,7 @@
BOOL
DWORD
HIMC
HIMCC
HKL
HWND
LONG
......@@ -11,6 +12,10 @@ LRESULT
UINT
WPARAM
%long # --forbidden
int
%ptr
LPCANDIDATEFORM
......@@ -18,11 +23,14 @@ LPCANDIDATELIST
LPCVOID
LPCOMPOSITIONFORM
LPDWORD
LPHKL
LPINPUTCONTEXT
LPLOGFONTA
LPLOGFONTW
LPPOINT
LPSTYLEBUFA
LPSTYLEBUFW
LPUINT
LPVOID
REGISTERWORDENUMPROCA
REGISTERWORDENUMPROCW
......
......@@ -110,6 +110,7 @@ void *
EXCEPTION_FRAME **
GUID *
WCHAR *
WCHAR ***
char *
char ***
enum __DEBUG_CLASS
......
......@@ -150,7 +150,7 @@ my %includes;
$includes{$file}{includes}{"$file_dir/$header"}++;
} elsif(-e "$wine_dir/include/$header") {
$includes{$file}{includes}{"include/$header"}++;
} else {
} else {
$output->write("$file: #include \"$header\" is not a local include\n");
}
}
......@@ -618,6 +618,11 @@ foreach my $file ($options->c_files) {
foreach my $name (keys(%{$includes{"$file_dir/../$header"}{includes}})) { # FIXME: This is not correct
$includes{$name}{used}++;
}
} elsif($header eq "controls.h") { # FIXME: Kludge
$includes{"dlls/user/$header"}{used}++;
foreach my $name (keys(%{$includes{"dlls/user/$header"}{includes}})) {
$includes{$name}{used}++;
}
} elsif(-e "$wine_dir/include/$header") {
$includes{"include/$header"}{used}++;
foreach my $name (keys(%{$includes{"include/$header"}{includes}})) {
......
......@@ -73,7 +73,7 @@ my %options = (
"debug-messages" => { default => 0, parent => "statements", description => "check for debug messages inconsistances" },
"documentation" => { default => 1, parent => "local", description => "check for documentation inconsistances\n" },
"documentation-width" => { default => 0, parent => "documentation", description => "check for documentation width inconsistances\n" },
"documentation-arguments" => { default => 0, parent => "documentation", description => "check for arguments documentation inconsistances\n" },
"documentation-arguments" => { default => 1, parent => "documentation", description => "check for arguments documentation inconsistances\n" },
"prototype" => { default => 0, parent => ["local", "headers"], description => "prototype checking" },
"global" => { default => 1, description => "global checking" },
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment