1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- #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();
- w.startInBackground();
-
-
-
-
-
-
-
-
-
- return a.exec();
- }
|