Updates to make latest changes compile
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@5939 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -27,7 +27,7 @@
|
||||
#ifndef _ISQLEXT_H
|
||||
# define _ISQLEXT_H
|
||||
|
||||
#include "isql.h"
|
||||
#include "wx/isql.h"
|
||||
|
||||
/*
|
||||
* Generic constants
|
||||
|
@@ -160,7 +160,7 @@
|
||||
// Set this to 0 if your compiler can't cope
|
||||
// with omission of prototype parameters.
|
||||
|
||||
#define wxUSE_ODBC 0
|
||||
#define wxUSE_ODBC 1
|
||||
// Define 1 to use ODBC classes
|
||||
|
||||
#define wxODBC_FWD_ONLY_CURSORS 1
|
||||
|
@@ -75,6 +75,7 @@ const wxEventType wxEVT_COMMAND_SPINCTRL_UPDATED = wxEVT_FIRST + 18;
|
||||
|
||||
/* Sockets send events, too */
|
||||
const wxEventType wxEVT_SOCKET = wxEVT_FIRST + 50;
|
||||
const wxEventType wxEVT_TIMER = wxEVT_FIRST + 80;
|
||||
|
||||
/* Mouse event types */
|
||||
const wxEventType wxEVT_LEFT_DOWN = wxEVT_FIRST + 100;
|
||||
|
@@ -245,6 +245,10 @@ wxLongLong wxGetLocalTimeMillis()
|
||||
SYSTEMTIME st;
|
||||
::GetLocalTime(&st);
|
||||
return (val + st.wMilliseconds);
|
||||
#elif defined(__VISAGECPP__)
|
||||
DATETIME dt;
|
||||
::DosGetDateTime(&dt);
|
||||
return (val + dt.hundredths*10);
|
||||
#elif defined(HAVE_GETTIMEOFDAY)
|
||||
struct timeval tp;
|
||||
if ( wxGetTimeOfDay(&tp, (struct timezone *)NULL) != -1 )
|
||||
|
Reference in New Issue
Block a user