initial commit
Signed-off-by: Peter Siegmund <mars3142@noreply.mars3142.dev>
This commit is contained in:
40
libs/wxWidgets-3.3.1/include/wx/dfb/private.h
Normal file
40
libs/wxWidgets-3.3.1/include/wx/dfb/private.h
Normal file
@@ -0,0 +1,40 @@
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
// Name: wx/dfb/private.h
|
||||
// Purpose: private helpers for wxDFB implementation
|
||||
// Author: Vaclav Slavik
|
||||
// Created: 2006-08-09
|
||||
// Copyright: (c) 2006 REA Elektronik GmbH
|
||||
// Licence: wxWindows licence
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
#ifndef _WX_DFB_PRIVATE_H_
|
||||
#define _WX_DFB_PRIVATE_H_
|
||||
|
||||
#include "wx/intl.h"
|
||||
#include "wx/log.h"
|
||||
|
||||
#include "wx/dfb/wrapdfb.h"
|
||||
#include <directfb_version.h>
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
// misc helpers
|
||||
//-----------------------------------------------------------------------------
|
||||
|
||||
/// Convert DirectFB timestamp to wxEvent one:
|
||||
#define wxDFB_EVENT_TIMESTAMP(event) \
|
||||
((event).timestamp.tv_sec * 1000 + (event).timestamp.tv_usec / 1000)
|
||||
|
||||
/**
|
||||
Check if DirectFB library version is at least @a major.@a minor.@a release.
|
||||
|
||||
@see wxCHECK_VERSION
|
||||
*/
|
||||
#define wxCHECK_DFB_VERSION(major,minor,release) \
|
||||
(DIRECTFB_MAJOR_VERSION > (major) || \
|
||||
(DIRECTFB_MAJOR_VERSION == (major) && \
|
||||
DIRECTFB_MINOR_VERSION > (minor)) || \
|
||||
(DIRECTFB_MAJOR_VERSION == (major) && \
|
||||
DIRECTFB_MINOR_VERSION == (minor) && \
|
||||
DIRECTFB_MICRO_VERSION >= (release)))
|
||||
|
||||
#endif // _WX_DFB_PRIVATE_H_
|
||||
Reference in New Issue
Block a user