summaryrefslogtreecommitdiffstats
path: root/other-licenses/7zstub/src/CPP/7zip/UI/FileManager/DialogSize.h
blob: bbce15982b44d37d2b77357a45af2f705a0d88da (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// DialogSize.h

#ifndef __DIALOG_SIZE_H
#define __DIALOG_SIZE_H

#include "../../../Windows/Control/Dialog.h"

#ifdef UNDER_CE
#define BIG_DIALOG_SIZE(x, y) bool isBig = NWindows::NControl::IsDialogSizeOK(x, y);
#define SIZED_DIALOG(big) (isBig ? big : big ## _2)
#else
#define BIG_DIALOG_SIZE(x, y)
#define SIZED_DIALOG(big) big
#endif

#endif