(file) Return to miextras.c CVS log (file) (dir) Up to [OMI] / omi / base

 1 krisbash 1.1 #include "miextras.h"
 2              #include "instance.h"
 3              
 4              MI_Result MI_CALL MI_Instance_Print(
 5                  _In_ const MI_Instance* self,
 6                  _In_ FILE* os,
 7                  MI_Uint32 level)
 8              {
 9                  return Instance_Print(self, os, level, MI_TRUE, MI_FALSE);
10              }
11              
12              
13              MI_Result MI_CALL MI_Class_Print(
14                  _In_ const MI_Instance* self,
15                  _In_ FILE* os,
16                  MI_Uint32 level)
17              {
18                  return Instance_Print(self, os, level, MI_TRUE, MI_TRUE);
19              }
20              

ViewCVS 0.9.2