-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Functions.module: Created the MkPart function that uses fdisk to create new partitions on a given drive. Receives drive name, partition number and partition size and returns true if the partition was created and false if the creation failed.
- Loading branch information
easuter
committed
Jan 7, 2008
1 parent
35599f2
commit 1f92eba
Showing
10 changed files
with
149 additions
and
69 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,9 @@ | ||
' Gambas class file | ||
|
||
PUBLIC PkgName AS String | ||
PUBLIC PkgCategory AS String 'catagories can be required, optional, and extra | ||
PUBLIC PkgComment AS String 'A comment on the package | ||
PUBLIC PkgPath AS String ' the install path for the package | ||
PUBLIC PkgSize AS Long 'Individual package size | ||
PUBLIC Name AS String | ||
PUBLIC Category AS String 'catagories can be required, optional, and extra | ||
PUBLIC Comment AS String 'A comment on the package | ||
PUBLIC Path AS String ' the install path for the package | ||
PUBLIC UncompSize AS Long 'Individual package size, uncompressed! | ||
PUBLIC Selected AS Boolean 'This indicates if the package [i] was marked for installation. The value is always TRUE unless manually changed to FALSE | ||
|
||
'This is in the wrong place?! moved to Global for now.... | ||
'PUBLIC TotalSize AS Long 'Total size of all the packages when uncompressed |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -73,3 +73,9 @@ PUBLIC SUB Button6_Click() 'Config 2: | |
|
||
END | ||
|
||
|
||
PUBLIC SUB TextLabel1_MouseDown() | ||
|
||
|
||
|
||
END |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters