showMessage.h 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. #pragma once
  2. #include "ThirdPartyHeadersBegin.h"
  3. #include <cstdarg>
  4. #include "ThirdPartyHeadersEnd.h"
  5. #include "MASTER.h"
  6. #include "GLOBAL.h"
  7. extern bool _showMessage(MessageBoxType_e messageBoxType, char const *___2432);
  8. namespace tecplot
  9. {
  10. namespace ___3933
  11. {
  12. inline bool messageBox(MessageBoxType_e messageBoxType, char const *format, va_list args)
  13. {
  14. REQUIRE(VALID_ENUM(messageBoxType, MessageBoxType_e));
  15. REQUIRE(VALID_REF(format));
  16. char ___2455[5000];
  17. vsprintf(___2455, format, args);
  18. return _showMessage(messageBoxType, ___2455);
  19. }
  20. inline bool ___1186(char const *format, ...)
  21. {
  22. va_list args;
  23. va_start(args, format);
  24. (void)messageBox(___2443, format, args);
  25. va_end(args);
  26. return false;
  27. }
  28. inline bool ___3247(char const *format, ...)
  29. {
  30. va_list args;
  31. va_start(args, format);
  32. bool ___2039 = (messageBox(___2449, format, args) == ___4226);
  33. va_end(args);
  34. return ___2039;
  35. }
  36. inline bool ___1931(FILE *file, char const *format, ...)
  37. {
  38. va_list args;
  39. va_start(args, format);
  40. bool ___2039;
  41. if (file == NULL)
  42. ___2039 = messageBox(___2444, format, args);
  43. else
  44. ___2039 = (vfprintf(file, format, args) >= 0);
  45. va_end(args);
  46. return ___2039;
  47. }
  48. inline bool ___1931(char const *format, ...)
  49. {
  50. va_list args;
  51. va_start(args, format);
  52. bool ___2039 = messageBox(___2444, format, args);
  53. va_end(args);
  54. return ___2039;
  55. }
  56. }
  57. }