kolibrios/programs/develop/libraries/libs-dev/libimg/pnm/pnm.inc

31 lines
2.0 KiB
PHP
Raw Normal View History

;;================================================================================================;;
;;//// pnm.inc //// (c) dunkaist, 2012 ///////////////////////////////////////////////////////////;;
;;================================================================================================;;
;; ;;
;; This file is part of Common development libraries (Libs-Dev). ;;
;; ;;
;; Libs-Dev is free software: you can redistribute it and/or modify it under the terms of the GNU ;;
;; Lesser General Public License as published by the Free Software Foundation, either version 2.1 ;;
;; of the License, or (at your option) any later version. ;;
;; ;;
;; Libs-Dev 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 ;;
;; Lesser General Public License for more details. ;;
;; ;;
;; You should have received a copy of the GNU Lesser General Public License along with Libs-Dev. ;;
;; If not, see <http://www.gnu.org/licenses/>. ;;
;; ;;
;;================================================================================================;;
PNM_RAW = 0
PNM_ASCII = 1
PNM_PBM = 0
PNM_PGM = 1
PNM_PPM = 2
struct Encode_PNM ; ignored so far. just an example
Size dd ? ; the size of this structure
Mode dd ? ; PNM_RAW or PNM_ASCII
ends