win32_ordinal_test.c
上传用户:shw771010
上传日期:2022-01-05
资源大小:991k
文件大小:3k
源码类别:

Audio

开发平台:

Unix_Linux

  1. /*
  2. ** Copyright (C) 2006-2009 Erik de Castro Lopo <erikd@mega-nerd.com>
  3. **
  4. ** This program is free software; you can redistribute it and/or modify
  5. ** it under the terms of the GNU General Public License as published by
  6. ** the Free Software Foundation; either version 2 of the License, or
  7. ** (at your option) any later version.
  8. **
  9. ** This program 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
  12. ** GNU General Public License for more details.
  13. **
  14. ** You should have received a copy of the GNU General Public License
  15. ** along with this program; if not, write to the Free Software
  16. ** Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  17. */
  18. #include "sfconfig.h"
  19. #include "sndfile.h"
  20. #include <stdio.h>
  21. #include <stdlib.h>
  22. #if HAVE_UNISTD_H
  23. #include <unistd.h>
  24. #endif
  25. #if (HAVE_DECL_S_IRGRP == 0)
  26. #include <sf_unistd.h>
  27. #endif
  28. #include <string.h>
  29. #include <fcntl.h>
  30. #include <sys/types.h>
  31. #include "utils.h"
  32. #if (defined (WIN32) || defined (_WIN32) || defined (__CYGWIN__))
  33. #define TEST_WIN32 1
  34. #else
  35. #define TEST_WIN32 0
  36. #endif
  37. #if TEST_WIN32
  38. #include <windows.h>
  39. static const char * locations [] =
  40. { ".", "../src/", "src/", "../src/.libs/", "src/.libs/",
  41. NULL
  42. } ; /* locations. */
  43. static int
  44. test_ordinal (HMODULE hmod, const char * func_name, int ordinal)
  45. { char *lpmsg ;
  46. void *name, *ord ;
  47. print_test_name ("win32_ordinal_test", func_name) ;
  48. #if SIZEOF_VOIDP == 8
  49. #define LPCSTR_OF_ORDINAL(x) ((LPCSTR) ((int64_t) (x)))
  50. #else
  51. #define LPCSTR_OF_ORDINAL(x) ((LPCSTR) (x))
  52. #endif
  53. ord = GetProcAddress (hmod, LPCSTR_OF_ORDINAL (ordinal)) ;
  54. if ((name = GetProcAddress (hmod, func_name)) == NULL)
  55. { FormatMessage (FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_FROM_SYSTEM, NULL, GetLastError (),
  56. MAKELANGID (LANG_NEUTRAL, SUBLANG_DEFAULT), (LPTSTR) &lpmsg, 0, NULL) ;
  57. /*-puts (lpmsg) ;-*/
  58. } ;
  59. if (name != NULL && ord != NULL && name == ord)
  60. { puts ("ok") ;
  61. return 0 ;
  62. } ;
  63. puts ("fail") ;
  64. return 1 ;
  65. } /* test_ordinal */
  66. static void
  67. win32_ordinal_test (void)
  68. { static char buffer [1024] ;
  69. static char func_name [1024] ;
  70. HMODULE hmod = NULL ;
  71. FILE * file = NULL ;
  72. int k, ordinal, errors = 0 ;
  73. for (k = 0 ; locations [k] != NULL ; k++)
  74. { snprintf (buffer, sizeof (buffer), "%s/libsndfile-1.def", locations [k]) ;
  75. if ((file = fopen (buffer, "r")) != NULL)
  76. break ;
  77. } ;
  78. if (file == NULL)
  79. { puts ("nnError : cannot open DEF file.n") ;
  80. exit (1) ;
  81. } ;
  82. for (k = 0 ; locations [k] != NULL ; k++)
  83. { snprintf (buffer, sizeof (buffer), "%s/libsndfile-1.dll", locations [k]) ;
  84. if ((hmod = (HMODULE) LoadLibrary (buffer)) != NULL)
  85. break ;
  86. } ;
  87. if (hmod == NULL)
  88. { puts ("nnError : cannot load DLL.n") ;
  89. exit (1) ;
  90. } ;
  91. while (fgets (buffer, sizeof (buffer), file) != NULL)
  92. { func_name [0] = 0 ;
  93. ordinal = 0 ;
  94. if (sscanf (buffer, "%s @%d", func_name, &ordinal) != 2)
  95. continue ;
  96. errors += test_ordinal (hmod, func_name, ordinal) ;
  97. } ;
  98. FreeLibrary (hmod) ;
  99. fclose (file) ;
  100. if (errors > 0)
  101. { printf ("nnErrors : %dnn", errors) ;
  102. exit (1) ;
  103. } ;
  104. return ;
  105. } /* win32_ordinal_test */
  106. #endif
  107. int
  108. main (void)
  109. {
  110. #if (TEST_WIN32 && WIN32_TARGET_DLL)
  111. win32_ordinal_test () ;
  112. #endif
  113. return 0 ;
  114. } /* main */