1
0

langutil.h 699 B

123456789101112131415161718
  1. #ifndef WINAMP_SETUP_LANGUTIL_HEADER
  2. #define WINAMP_SETUP_LANGUTIL_HEADER
  3. #include <windows.h>
  4. #include "./loadimage.h"
  5. INT_PTR WADialogBoxParam(LPCWSTR lpTemplateName, HWND hWndParent, DLGPROC lpDialogFunc, LPARAM dwInitParam);
  6. HWND WACreateDialogParam(LPCWSTR lpTemplateName, HWND hWndParent, DLGPROC lpDialogFunc, LPARAM dwInitParam);
  7. HBITMAP WALoadImage2(LPCWSTR pszSectionName, LPCWSTR lpImageName, BOOL bPremult);
  8. #define WADialogBox(lpTemplate, hWndParent, lpDialogFunc) \
  9. WADialogBoxParam(lpTemplate, hWndParent, lpDialogFunc, 0L)
  10. #define WACreateDialog(lpName, hWndParent, lpDialogFunc) \
  11. WACreateDialogParam(lpName, hWndParent, lpDialogFunc, 0L)
  12. #endif //WINAMP_SETUP_LANGUTIL_HEADER