Deprecated: The each() function is deprecated. This message will be suppressed on further calls in /home/zhenxiangba/zhenxiangba.com/public_html/phproxy-improved-master/index.php on line 456
Index of /~filliatr/ftp/ocamlsdl
[go: Go Back, main page]

Index of /~filliatr/ftp/ocamlsdl
      Name                    Last modified       Size  Description

[DIR] Parent Directory 26-Oct-2005 15:18 - [TXT] COPYING 20-Sep-2006 19:36 1k [TXT] INSTALL 20-Sep-2006 19:36 1k [TXT] LGPL 20-Sep-2006 19:36 25k [CMP] ocamlsdl-1.0.tar.gz 10-Dec-2002 14:27 89k [CMP] ocamlsdl-1.1.tar.gz 29-Jun-2003 15:56 89k [CMP] ocamlsdl-1.2.tar.gz 20-Sep-2006 19:36 89k

ocamlsdl - Objective Caml interface for the SDL library
Copyright (C) 1999- Jean-Christophe FILLIATRE


REQUIREMENTS
============

You need OCaml version 3.00 or later and the SDL library (Simple DirectMedia 
Layer), which is available at

	http://www.libsdl.org/


INSTALL
=======

See the enclosed file INSTALL.


USE
===

To compile an O'Caml program that uses the ocamlsdl library, do

	ocamlc -custom <other options> sdl.cma <other files>

or 	ocamlopt <other options> sdl.cmxa <other files>

If you need to link SDL statically just add "-ccopt -static".

DOCUMENTATION
=============

See the doc of the SDL library (available on-line, and released with
the sources). The ocaml functions have basically the same names as the
C ones (the suffix SDL_ is removed, and uppercase letters are turned
into lowercase ones, separated by underscores; for instance,
SDL_UpdateRects becomes SDL.update_rects). See the file sdl.mli.