annotate tests/DLL/dltest.c @ 2955:4d269e525e21

[xemacs-hg @ 2005-09-26 22:18:59 by adrian] xemacs-21.5-clean: Getting texinfmt.el to compile core .texi again -------------------- ChangeLog entries follow: -------------------- man/ChangeLog addition: 2005-09-27 Adrian Aichner <adrian@xemacs.org> * lispref/packaging.texi: Get file to compile with teinfmt.el. * lispref/packaging.texi (Packaging): Ditto. * lispref/packaging.texi (Package Overview): Ditto. * lispref/packaging.texi (The User View): Ditto. * lispref/packaging.texi (The Library Maintainer View): Ditto. * lispref/packaging.texi (Infrastructure): Ditto. * lispref/packaging.texi (Obtaining): Ditto. * lispref/packaging.texi (Local.rules File): Ditto. * lispref/packaging.texi (package-info.in): Ditto. * lispref/packaging.texi (Makefile): Ditto. * lispref/packaging.texi (Documenting Packages): Ditto. 2005-09-27 Adrian Aichner <adrian@xemacs.org> * internals/internals.texi (A Summary of the Various XEmacs Modules): Get file to compile with texinfmt.el. * internals/internals.texi (Windows Build Flags): Ditto.
author adrian
date Mon, 26 Sep 2005 22:19:05 +0000
parents abe6d1db359e
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
263
727739f917cb Import from CVS: tag r20-5b30
cvs
parents:
diff changeset
1 /*
727739f917cb Import from CVS: tag r20-5b30
cvs
parents:
diff changeset
2 Make a symbolic link to ${blddir}/src/config.h in this directory and do:
727739f917cb Import from CVS: tag r20-5b30
cvs
parents:
diff changeset
3
727739f917cb Import from CVS: tag r20-5b30
cvs
parents:
diff changeset
4 gcc -shared -fPIC -Demacs -DHAVE_CONFIG_H -I. \
727739f917cb Import from CVS: tag r20-5b30
cvs
parents:
diff changeset
5 -I/home/xemacs/xemacs-20.0/src -g dltest.c -o dltest
727739f917cb Import from CVS: tag r20-5b30
cvs
parents:
diff changeset
6 */
727739f917cb Import from CVS: tag r20-5b30
cvs
parents:
diff changeset
7
727739f917cb Import from CVS: tag r20-5b30
cvs
parents:
diff changeset
8 # include <config.h>
727739f917cb Import from CVS: tag r20-5b30
cvs
parents:
diff changeset
9 # include "lisp.h"
727739f917cb Import from CVS: tag r20-5b30
cvs
parents:
diff changeset
10
727739f917cb Import from CVS: tag r20-5b30
cvs
parents:
diff changeset
11 Lisp_Object Qdltest_counter;
727739f917cb Import from CVS: tag r20-5b30
cvs
parents:
diff changeset
12
727739f917cb Import from CVS: tag r20-5b30
cvs
parents:
diff changeset
13 DEFUN ("dltest", Fdltest, 0, 0, 0, /*
727739f917cb Import from CVS: tag r20-5b30
cvs
parents:
diff changeset
14 Simple test function.
727739f917cb Import from CVS: tag r20-5b30
cvs
parents:
diff changeset
15 */
727739f917cb Import from CVS: tag r20-5b30
cvs
parents:
diff changeset
16 ())
727739f917cb Import from CVS: tag r20-5b30
cvs
parents:
diff changeset
17 {
727739f917cb Import from CVS: tag r20-5b30
cvs
parents:
diff changeset
18 Qdltest_counter = make_int(XINT(Qdltest_counter) + 1);
727739f917cb Import from CVS: tag r20-5b30
cvs
parents:
diff changeset
19
727739f917cb Import from CVS: tag r20-5b30
cvs
parents:
diff changeset
20 return Qdltest_counter;
727739f917cb Import from CVS: tag r20-5b30
cvs
parents:
diff changeset
21 }
727739f917cb Import from CVS: tag r20-5b30
cvs
parents:
diff changeset
22
727739f917cb Import from CVS: tag r20-5b30
cvs
parents:
diff changeset
23 void
727739f917cb Import from CVS: tag r20-5b30
cvs
parents:
diff changeset
24 vars_of()
727739f917cb Import from CVS: tag r20-5b30
cvs
parents:
diff changeset
25 {
727739f917cb Import from CVS: tag r20-5b30
cvs
parents:
diff changeset
26 DEFVAR_LISP("dltest-counter", &Qdltest_counter /*
727739f917cb Import from CVS: tag r20-5b30
cvs
parents:
diff changeset
27 counter.
727739f917cb Import from CVS: tag r20-5b30
cvs
parents:
diff changeset
28 */ );
727739f917cb Import from CVS: tag r20-5b30
cvs
parents:
diff changeset
29
727739f917cb Import from CVS: tag r20-5b30
cvs
parents:
diff changeset
30 printf("Ten = %d\n", 10);
727739f917cb Import from CVS: tag r20-5b30
cvs
parents:
diff changeset
31
727739f917cb Import from CVS: tag r20-5b30
cvs
parents:
diff changeset
32 Qdltest_counter = make_int(10);
727739f917cb Import from CVS: tag r20-5b30
cvs
parents:
diff changeset
33 }
727739f917cb Import from CVS: tag r20-5b30
cvs
parents:
diff changeset
34
727739f917cb Import from CVS: tag r20-5b30
cvs
parents:
diff changeset
35 void
727739f917cb Import from CVS: tag r20-5b30
cvs
parents:
diff changeset
36 syms_of()
727739f917cb Import from CVS: tag r20-5b30
cvs
parents:
diff changeset
37 {
727739f917cb Import from CVS: tag r20-5b30
cvs
parents:
diff changeset
38 DEFSUBR(Fdltest);
727739f917cb Import from CVS: tag r20-5b30
cvs
parents:
diff changeset
39 }