ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/server/plugins.C
(Generate patch)

Comparing deliantra/server/server/plugins.C (file contents):
Revision 1.34 by root, Sat Dec 23 13:56:25 2006 UTC vs.
Revision 1.35 by root, Mon Dec 25 11:25:49 2006 UTC

2881} 2881}
2882 2882
2883void * 2883void *
2884cfapi_object_clear (int *type, ...) 2884cfapi_object_clear (int *type, ...)
2885{ 2885{
2886 va_list args; 2886 abort ();
2887 object *op;
2888
2889 va_start (args, type);
2890
2891 op = va_arg (args, object *);
2892
2893 va_end (args);
2894
2895 op->clear ();
2896 *type = CFAPI_NONE;
2897 return NULL;
2898} 2887}
2899 2888
2900void * 2889void *
2901cfapi_object_reset (int *type, ...) 2890cfapi_object_reset (int *type, ...)
2902{ 2891{
2935} 2924}
2936 2925
2937void * 2926void *
2938cfapi_object_clean_object (int *type, ...) 2927cfapi_object_clean_object (int *type, ...)
2939{ 2928{
2940 va_list args; 2929 abort ();
2941 object *op;
2942
2943 va_start (args, type);
2944 op = va_arg (args, object *);
2945
2946 clean_object (op);
2947 va_end (args);
2948 *type = CFAPI_NONE;
2949 return NULL;
2950} 2930}
2951 2931
2952void * 2932void *
2953cfapi_object_on_same_map (int *type, ...) 2933cfapi_object_on_same_map (int *type, ...)
2954{ 2934{

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines