-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
64 additions
and
18 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,17 @@ | ||
mkdir bin | ||
copy Release\dll.dll bin\TBTray.dll | ||
copy Release\loader.exe bin\TBTray.exe | ||
copy README.md bin | ||
copy LICENSE.txt bin | ||
echo TBTray register > bin\register.cmd | ||
echo TBTray unregister > bin\unregister.cmd | ||
|
||
mkdir bin\32-bit | ||
copy Win32\Release\dll.dll bin\32-bit\TBTray.dll | ||
copy Win32\Release\loader.exe bin\32-bit\TBTray.exe | ||
echo TBTray register > bin\32-bit\register.cmd | ||
echo TBTray unregister > bin\32-bit\unregister.cmd | ||
|
||
mkdir bin\64-bit | ||
copy x64\Release\dll.dll bin\64-bit\TBTray.dll | ||
copy x64\Release\loader.exe bin\64-bit\TBTray.exe | ||
echo TBTray register > bin\64-bit\register.cmd | ||
echo TBTray unregister > bin\64-bit\unregister.cmd | ||
|
||
pause |
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
LIBRARY TBTray | ||
EXPORTS | ||
EntryHook @1 |
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