コード例 #1
0
ファイル: input.c プロジェクト: dumganhar/glfw
GLFWAPI void glfwSetClipboardString(GLFWwindow* handle, const char* string)
{
    _GLFWwindow* window = (_GLFWwindow*) handle;
    assert(window != NULL);
    assert(string != NULL);

    _GLFW_REQUIRE_INIT();
    _glfwPlatformSetClipboardString(window, string);
}
コード例 #2
0
ファイル: clipboard.c プロジェクト: AMD-FirePro/SDK
GLFWAPI void glfwSetClipboardString(GLFWwindow handle, const char* string)
{
    _GLFWwindow* window = (_GLFWwindow*) handle;

    if (!_glfwInitialized)
    {
        _glfwSetError(GLFW_NOT_INITIALIZED, NULL);
        return;
    }

    _glfwPlatformSetClipboardString(window, string);
}