Ejemplo n.º 1
0
 private static extern void FormatEx(
     String driveLetter,
     int mediaFlag,
     String fsType,
     String label,
     Int32 quickFormat,
     Int32 clusterSize,
     FormatCallBackDelegate callBackDelegate);
Ejemplo n.º 2
0
        public static void FormatFMIFS(string name)
        {
            FormatCallBackDelegate fcb = new FormatCallBackDelegate(formatCallBack);

            FormatEx(name, FMIFS_REMOVABLE, "FAT32", "MiSTer Data", 0, 0, fcb);
        }