mirror of https://github.com/mono/CppSharp.git
c-sharpdotnetmonobindingsbridgecclangcpluspluscppsharpglueinteropparserparsingpinvokeswigsyntax-treevisitorsxamarinxamarin-bindings
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
487 B
21 lines
487 B
|
|
/* |
|
* These are not in the unix version of qt, and -fkeep-inline-functions will generate |
|
* references to their vtables etc., making the library unloadable. |
|
*/ |
|
#define QT_NO_STYLE_WINDOWSVISTA |
|
#define QT_NO_STYLE_WINDOWSXP |
|
#define QT_NO_STYLE_S60 |
|
#define QT_NO_STYLE_WINDOWSCE |
|
#define QT_NO_STYLE_WINDOWSMOBILE |
|
#define QT_NO_QWSEMBEDWIDGET |
|
|
|
// this one was annoying to track down! |
|
#define QT_NO_TRANSLATION |
|
|
|
#include "QtGui/QApplication" |
|
#include "QtGui/QPushButton" |
|
|
|
int main () |
|
{ |
|
}
|
|
|