summaryrefslogtreecommitdiff
path: root/src/include/StoreHandledData.h
diff options
context:
space:
mode:
authorgoodale <goodale@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-02-02 13:19:30 +0000
committergoodale <goodale@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-02-02 13:19:30 +0000
commit746ed41ca317127998f04103fdd6a157e14b21e5 (patch)
treecfb91793130dfc6ccb0431565d4e33b0aaa88be4 /src/include/StoreHandledData.h
parent2a855899320951aa62141b35ef2b2d21109a060b (diff)
Changed char * to const char * in CCTK_NewHandle.
Added StoreHandledData.c to make.code.defn. Tom git-svn-id: http://svn.cactuscode.org/flesh/trunk@171 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'src/include/StoreHandledData.h')
-rw-r--r--src/include/StoreHandledData.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/StoreHandledData.h b/src/include/StoreHandledData.h
index b17acafb..95c77b14 100644
--- a/src/include/StoreHandledData.h
+++ b/src/include/StoreHandledData.h
@@ -34,7 +34,7 @@ extern "C"
{
#endif
-int CCTK_NewHandle(cHandledData **storage, char *name, void *data);
+int CCTK_NewHandle(cHandledData **storage, const char *name, void *data);
int CCTK_DeleteHandle(cHandledData *storage, int handle);
void *CCTK_GetHandledData(cHandledData *storage, int handle);
int CCTK_GetHandle(cHandledData *storage, const char *name, void **data);