winapi_global.pm 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. #
  2. # Copyright 1999, 2000, 2001 Patrik Stridvall
  3. #
  4. # This library is free software; you can redistribute it and/or
  5. # modify it under the terms of the GNU Lesser General Public
  6. # License as published by the Free Software Foundation; either
  7. # version 2.1 of the License, or (at your option) any later version.
  8. #
  9. # This library is distributed in the hope that it will be useful,
  10. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  12. # Lesser General Public License for more details.
  13. #
  14. # You should have received a copy of the GNU Lesser General Public
  15. # License along with this library; if not, write to the Free Software
  16. # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
  17. #
  18. package winapi_global;
  19. use strict;
  20. use warnings 'all';
  21. use modules qw($modules);
  22. use nativeapi qw($nativeapi);
  23. use options qw($options);
  24. use output qw($output);
  25. use winapi qw(@winapis);
  26. sub check_modules($$) {
  27. my $complete_module = shift;
  28. my $module2functions = shift;
  29. my @complete_modules = sort(keys(%$complete_module));
  30. if($options->declared) {
  31. foreach my $module (@complete_modules) {
  32. foreach my $winapi (@winapis) {
  33. if(!$winapi->is_module($module)) { next; }
  34. my $functions = $$module2functions{$module};
  35. foreach my $internal_name ($winapi->all_internal_functions_in_module($module)) {
  36. next if $internal_name =~ /\./;
  37. my $function = $functions->{$internal_name};
  38. if(!defined($function) && !$nativeapi->is_function($internal_name))
  39. {
  40. $output->write("*.c: $module: $internal_name: " .
  41. "function declared but not implemented or declared external\n");
  42. }
  43. }
  44. }
  45. }
  46. }
  47. if($options->argument && $options->argument_forbidden) {
  48. foreach my $winapi (@winapis) {
  49. my $types_not_used = $winapi->types_not_used;
  50. foreach my $module (sort(keys(%$types_not_used))) {
  51. if(!$$complete_module{$module}) { next; }
  52. foreach my $type (sort(keys(%{$$types_not_used{$module}}))) {
  53. $output->write("*.c: $module: type ($type) not used\n");
  54. }
  55. }
  56. }
  57. }
  58. }
  59. sub check_all_modules($) {
  60. my $include2info = shift;
  61. winapi_documentation::report_documentation();
  62. if($options->headers_unused && $options->include) {
  63. foreach my $name (sort(keys(%$include2info))) {
  64. if(!$$include2info{$name}{used}) {
  65. $output->write("*.c: $name: include file is never used\n");
  66. }
  67. }
  68. }
  69. $modules->global_report;
  70. $nativeapi->global_report;
  71. }
  72. 1;