]> git.saurik.com Git - wxWidgets.git/blame - src/cocoa/main.cpp
Return NULL from wxWindow::GetCapture() when the capture is being lost.
[wxWidgets.git] / src / cocoa / main.cpp
CommitLineData
fb896a32 1/////////////////////////////////////////////////////////////////////////////
670f9935 2// Name: src/cocoa/main.cpp
fb896a32
DE
3// Purpose: Entry point
4// Author: David Elliott
5// Modified by:
6// Created: 2002/11/11
fb896a32 7// Copyright: (c) 2002 David Elliott
526954c5 8// Licence: wxWindows licence
fb896a32
DE
9/////////////////////////////////////////////////////////////////////////////
10/* DFE: ^^^^^ Was that really necessary :-) */
11
670f9935
WS
12#include "wx/wxprec.h"
13
14#ifndef WX_PRECOMP
15 #include "wx/app.h"
16#endif // WX_PRECOMP
fb896a32
DE
17
18WXDLLEXPORT int main(int argc, char* argv[])
19{
670f9935 20 return wxEntry(argc, argv);
fb896a32 21}