comparison dwt/internal/mozilla/XPCOMInit.d @ 340:3f4a5c7d138f

Fixes
author John Reimer <terminal.node@gmail.com>
date Sun, 26 Oct 2008 08:09:00 -0700
parents c7c696cdfec2
children 942da4b6558a
comparison
equal deleted inserted replaced
339:c317081df76f 340:3f4a5c7d138f
46 char *property; 46 char *property;
47 char *value; 47 char *value;
48 } 48 }
49 } 49 }
50 50
51 public class XPCOMInit : Platform { 51 const int PATH_MAX = 4096;
52 public static final int PATH_MAX = 4096;
53 52
54 extern(System): 53 extern(System):
55 54
56 public static uint GRE_GetGREPathWithProperties(GREVersionRange *versions, int versionsLength, GREProperty *properties, uint propertiesLength, char *buffer, uint buflen); 55 public static uint GRE_GetGREPathWithProperties(GREVersionRange *versions, int versionsLength, GREProperty *properties, uint propertiesLength, char *buffer, uint buflen);
57 public static uint XPCOMGlueStartup(char* xpcomFile); 56 public static uint XPCOMGlueStartup(char* xpcomFile);
58 public static int XPCOMGlueShutdown (); 57 public static int XPCOMGlueShutdown ();
59 }