annotate osdep/shmem.h @ 25715:09c3ce60f369

Make xpm arrays really const (I missed that they are not strings but array of strings (string pointers)).
author reimar
date Sun, 13 Jan 2008 16:52:33 +0000
parents 6ac1ece1f9fe
children 4129c8cfa742
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
25553
6ac1ece1f9fe Add multiple inclusion guards to all header files that lack them.
diego
parents: 9914
diff changeset
1 #ifndef SHMEM_H
6ac1ece1f9fe Add multiple inclusion guards to all header files that lack them.
diego
parents: 9914
diff changeset
2 #define SHMEM_H
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
3
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
4 void* shmem_alloc(int size);
9914
3c856c0fc45e mem mapped area need to be unmapped.
albeu
parents: 9380
diff changeset
5 void shmem_free(void* p,int size);
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
6
25553
6ac1ece1f9fe Add multiple inclusion guards to all header files that lack them.
diego
parents: 9914
diff changeset
7 #endif /* SHMEM_H */