Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'intern/ghost/intern/GHOST_SystemNULL.h')
-rw-r--r--intern/ghost/intern/GHOST_SystemNULL.h26
1 files changed, 13 insertions, 13 deletions
diff --git a/intern/ghost/intern/GHOST_SystemNULL.h b/intern/ghost/intern/GHOST_SystemNULL.h
index faeffffed9e..5dbc42b53a2 100644
--- a/intern/ghost/intern/GHOST_SystemNULL.h
+++ b/intern/ghost/intern/GHOST_SystemNULL.h
@@ -52,33 +52,33 @@ class GHOST_SystemNULL : public GHOST_System {
{
return GHOST_kSuccess;
}
- GHOST_TUns8 *getClipboard(bool selection) const
+ char *getClipboard(bool selection) const
{
return NULL;
}
- void putClipboard(GHOST_TInt8 *buffer, bool selection) const
+ void putClipboard(const char *buffer, bool selection) const
{ /* nop */
}
- GHOST_TUns64 getMilliSeconds() const
+ uint64_t getMilliSeconds() const
{
return 0;
}
- GHOST_TUns8 getNumDisplays() const
+ uint8_t getNumDisplays() const
{
- return GHOST_TUns8(1);
+ return uint8_t(1);
}
- GHOST_TSuccess getCursorPosition(GHOST_TInt32 &x, GHOST_TInt32 &y) const
+ GHOST_TSuccess getCursorPosition(int32_t &x, int32_t &y) const
{
return GHOST_kFailure;
}
- GHOST_TSuccess setCursorPosition(GHOST_TInt32 x, GHOST_TInt32 y)
+ GHOST_TSuccess setCursorPosition(int32_t x, int32_t y)
{
return GHOST_kFailure;
}
- void getMainDisplayDimensions(GHOST_TUns32 &width, GHOST_TUns32 &height) const
+ void getMainDisplayDimensions(uint32_t &width, uint32_t &height) const
{ /* nop */
}
- void getAllDisplayDimensions(GHOST_TUns32 &width, GHOST_TUns32 &height) const
+ void getAllDisplayDimensions(uint32_t &width, uint32_t &height) const
{ /* nop */
}
GHOST_IContext *createOffscreenContext(GHOST_GLSettings glSettings)
@@ -106,10 +106,10 @@ class GHOST_SystemNULL : public GHOST_System {
}
GHOST_IWindow *createWindow(const char *title,
- GHOST_TInt32 left,
- GHOST_TInt32 top,
- GHOST_TUns32 width,
- GHOST_TUns32 height,
+ int32_t left,
+ int32_t top,
+ uint32_t width,
+ uint32_t height,
GHOST_TWindowState state,
GHOST_TDrawingContextType type,
GHOST_GLSettings glSettings,