12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- #include "dialog.h"
- #include <QApplication>
- #define ISAPI_OUT_LEN 3 * 1024 * 1024
- #define ISAPI_STATUS_LEN 8*1024
- #define GET_YEAR(_time_) (((_time_)>>26) + 2000)
- #define GET_MONTH(_time_) (((_time_)>>22) & 15)
- #define GET_DAY(_time_) (((_time_)>>17) & 31)
- #define GET_HOUR(_time_) (((_time_)>>12) & 31)
- #define GET_MINUTE(_time_) (((_time_)>>6) & 63)
- #define GET_SECOND(_time_) (((_time_)>>0) & 63)
- int main(int argc, char *argv[])
- {
- QApplication a(argc, argv);
- Dialog w;
-
- w.show();
-
-
-
-
-
-
-
-
-
-
- a.setFont(QFont("Microsoft Yahei", 9));
-
- return a.exec();
- }
|