/* * shared_fbf.h - Shared mnemonics used by the Frame Buffer related syscalls. * * Author Alain Greiner (2016,2017,2018,2019,2020) * * Copyright (c) UPMC Sorbonne Universites * * This file is part of ALMOS-MKH. * * ALMOS-MKH is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by * the Free Software Foundation; version 2.0 of the License. * * ALMOS-MKH is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU General Public License * along with ALMOS-MKH; if not, write to the Free Software Foundation, * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ #ifndef _SHARED_FRAMEBUFFER_H_ #define _SHARED_FRAMEBUFFER_H_ /******************************************************************************************* * This enum defines the user operation mnemonics for frame buffer access. ******************************************************************************************/ typedef enum { FBF_GET_CONFIG = 0, FBF_DIRECT_READ = 1, FBF_DIRECT_WRITE = 2, FBF_CREATE_WINDOW = 3, FBF_ACTIVE_WINDOW = 4, FBF_DELETE_WINDOW = 5, FBF_REFRESH_WINDOW = 6, FBF_FRONT_WINDOW = 7, FBF_MOVE_WINDOW = 8, FBF_RESIZE_WINDOW = 9, } fbf_usr_operation_type_t; #endif // _SHARED_FRAMEBUFFER_H_