mirror of
https://github.com/brunoherbelin/vimix.git
synced 2025-12-05 23:40:02 +01:00
15 lines
236 B
C++
15 lines
236 B
C++
#ifndef COCOA_TOOLKIT_H
|
|
#define COCOA_TOOLKIT_H
|
|
|
|
#ifndef APPLE
|
|
#error "This file is only meant to be compiled for Mac OS X targets"
|
|
#endif
|
|
|
|
namespace CocoaToolkit {
|
|
|
|
void * get_current_nsopengl_context();
|
|
|
|
};
|
|
|
|
#endif // COCOA_TOOLKIT_H
|