- Timestamp:
- 08/22/10 20:13:52 (3 years ago)
- Location:
- lang/c/NetworkUpdater/trunk
- Files:
-
- 2 added
- 8 modified
-
Build/License.txt (added)
-
Build/MSW.am (modified) (2 diffs)
-
Build/MSW.c (modified) (2 diffs)
-
Build/Sample.c (modified) (1 diff)
-
Build/TODO.txt (modified) (1 diff)
-
Build/Test.vcproj (modified) (1 diff)
-
README.txt (added)
-
Windows/NetworkUpdater.c (modified) (3 diffs)
-
Windows/NetworkUpdater.h (modified) (1 diff)
-
Windows/Sample.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
lang/c/NetworkUpdater/trunk/Build/MSW.am
r38310 r38329 29 29 30 30 NETWORKUPDATER_TEMPLATES = \ 31 License.txt \ 31 32 Distribution.h \ 32 33 Headers.h \ … … 53 54 cat $(NETWORKUPDATER_TEMPLATES) | perl crlf.pl $@ 54 55 55 ../Windows/NetworkUpdater.h: NetworkUpdater.h56 cat $<| perl crlf.pl $@56 ../Windows/NetworkUpdater.h: License.txt NetworkUpdater.h 57 cat License.txt NetworkUpdater.h | perl crlf.pl $@ 57 58 58 59 Extracter/7za/7za.exe.inl: -
lang/c/NetworkUpdater/trunk/Build/MSW.c
r38326 r38329 627 627 goto clean_up; 628 628 } 629 GetTempPath( system_temp_path_chars, object->system_temp_dir_path);629 GetTempPath((DWORD)system_temp_path_chars, object->system_temp_dir_path); 630 630 } 631 631 #endif … … 680 680 /* http://support.microsoft.com/kb/238393 */ 681 681 HRESULT NUI_AutoWrap(WORD autoType, VARIANT *pvResult, IDispatch *pDisp, 682 const OLECHAR* ptcName, size_tcArgs, VARIANT* rargs)682 const OLECHAR* ptcName, UINT cArgs, VARIANT* rargs) 683 683 { 684 684 DISPPARAMS dp = { NULL, NULL, 0, 0 }; -
lang/c/NetworkUpdater/trunk/Build/Sample.c
r38306 r38329 1 /* This file is placed in the public domain. */ 2 1 3 #include <stdio.h> 2 4 #include "NetworkUpdater.h" -
lang/c/NetworkUpdater/trunk/Build/TODO.txt
r38316 r38329 3 3 * Vista以降のVirtualStore対策はきちんとやっておく 4 4 * 各オブジェクトを、グローバルなデータ構造で管理してAPI呼び出し時に毎回チェック←InternetStatusCallback関数で超必要 5 * GUPのXMLファイルに対応 6 * win-getと連携したい 7 * てえええええええすううとおおおおおお 8 * かばれっじ100ぱーーーーーーーーーーせんと 9 * コピーするexeの署名についてまじめに考える 10 * らいせんすおあああああああああ 5 11 -
lang/c/NetworkUpdater/trunk/Build/Test.vcproj
r38212 r38329 45 45 MinimalRebuild="false" 46 46 BasicRuntimeChecks="0" 47 SmallerTypeCheck="true" 47 48 RuntimeLibrary="3" 48 DisableLanguageExtensions="false"49 49 UsePrecompiledHeader="0" 50 50 WarningLevel="4" -
lang/c/NetworkUpdater/trunk/Windows/NetworkUpdater.c
r38326 r38329 1 /* 2 3 Copyright (c) 2010 Isamu Mogi 4 5 This software is provided 'as-is', without any express or implied 6 warranty. In no event will the authors be held liable for any damages 7 arising from the use of this software. 8 9 Permission is granted to anyone to use this software for any purpose, 10 including commercial applications, and to alter it and redistribute it 11 freely, subject to the following restrictions: 12 13 1. The origin of this software must not be misrepresented; you must not 14 claim that you wrote the original software. If you use this software 15 in a product, an acknowledgment in the product documentation would be 16 appreciated but is not required. 17 18 2. Altered source versions must be plainly marked as such, and must not be 19 misrepresented as being the original software. 20 21 3. This notice may not be removed or altered from any source 22 distribution. 23 24 25 */ 26 27 /* 28 29 �z��I_7ZA_EXE_DATA , NUI_CLIENT7Z_EXE_DATA , NUI_7ZXA_DLL_DATA �̗v�f�� 30 7-Zip (http://www.7-zip.org/) �̃o�C�i���t�@�C���̃f�[�^�̂��߁A���̕����̈����� 31 7-Zip �̃��C�Z���X (http://www.7-zip.org/license.txt) �ɏ]���܂��B�܂��A 32 �}�N�� NU_EXTRACTER_7ZIP_ALONE ������U_EXTRACTER_7ZIP ��`�����ꍇ�A 33 �v���O�����́A7-Zip �ƃ����N���ꂽ��ɂȂ����B���Y���C�Z���X�ɒ��ӂ��Ă��������B 34 35 �z��I_MINIUNZ_EXE_DATA �̗v�f��miniunz.exe (http://www.zlib.net/) �� 36 �o�C�i���t�@�C���̃f�[�^�̂��߁A���̕����̈�����miniunz.exe �̃��C�Z���X 37 (http://www.zlib.net/zlib_license.html) �ɏ]���܂��B�܂��A 38 �}�N�� NU_EXTRACTER_ZIP ��`�����ꍇ�A�v���O�����́Aminiunz.exe �ƃ����N 39 ���ꂽ��ɂȂ����B���Y���C�Z���X�ɒ��ӂ��Ă��������B 40 41 */ 42 1 43 #define NUI_DISTRIBUTION 2 44 #ifndef NETWORKUPDATER_HEADERS_H … … 1200 1242 goto clean_up; 1201 1243 } 1202 GetTempPath( system_temp_path_chars, object->system_temp_dir_path);1244 GetTempPath((DWORD)system_temp_path_chars, object->system_temp_dir_path); 1203 1245 } 1204 1246 #endif … … 1253 1295 /* http://support.microsoft.com/kb/238393 */ 1254 1296 HRESULT NUI_AutoWrap(WORD autoType, VARIANT *pvResult, IDispatch *pDisp, 1255 const OLECHAR* ptcName, size_tcArgs, VARIANT* rargs)1297 const OLECHAR* ptcName, UINT cArgs, VARIANT* rargs) 1256 1298 { 1257 1299 DISPPARAMS dp = { NULL, NULL, 0, 0 }; -
lang/c/NetworkUpdater/trunk/Windows/NetworkUpdater.h
r38326 r38329 1 /* 2 3 Copyright (c) 2010 Isamu Mogi 4 5 This software is provided 'as-is', without any express or implied 6 warranty. In no event will the authors be held liable for any damages 7 arising from the use of this software. 8 9 Permission is granted to anyone to use this software for any purpose, 10 including commercial applications, and to alter it and redistribute it 11 freely, subject to the following restrictions: 12 13 1. The origin of this software must not be misrepresented; you must not 14 claim that you wrote the original software. If you use this software 15 in a product, an acknowledgment in the product documentation would be 16 appreciated but is not required. 17 18 2. Altered source versions must be plainly marked as such, and must not be 19 misrepresented as being the original software. 20 21 3. This notice may not be removed or altered from any source 22 distribution. 23 24 25 */ 26 27 /* 28 29 �z��I_7ZA_EXE_DATA , NUI_CLIENT7Z_EXE_DATA , NUI_7ZXA_DLL_DATA �̗v�f�� 30 7-Zip (http://www.7-zip.org/) �̃o�C�i���t�@�C���̃f�[�^�̂��߁A���̕����̈����� 31 7-Zip �̃��C�Z���X (http://www.7-zip.org/license.txt) �ɏ]���܂��B�܂��A 32 �}�N�� NU_EXTRACTER_7ZIP_ALONE ������U_EXTRACTER_7ZIP ��`�����ꍇ�A 33 �v���O�����́A7-Zip �ƃ����N���ꂽ��ɂȂ����B���Y���C�Z���X�ɒ��ӂ��Ă��������B 34 35 �z��I_MINIUNZ_EXE_DATA �̗v�f��miniunz.exe (http://www.zlib.net/) �� 36 �o�C�i���t�@�C���̃f�[�^�̂��߁A���̕����̈�����miniunz.exe �̃��C�Z���X 37 (http://www.zlib.net/zlib_license.html) �ɏ]���܂��B�܂��A 38 �}�N�� NU_EXTRACTER_ZIP ��`�����ꍇ�A�v���O�����́Aminiunz.exe �ƃ����N 39 ���ꂽ��ɂȂ����B���Y���C�Z���X�ɒ��ӂ��Ă��������B 40 41 */ 42 1 43 #ifndef NETWORKUPDATER_H_36317064016 2 44 #define NETWORKUPDATER_H_36317064016 -
lang/c/NetworkUpdater/trunk/Windows/Sample.c
r38327 r38329 1 /* This file is placed in the public domain. */ 2 1 3 #include <windows.h> 2 4 #include <stdio.h>
![(please configure the [header_logo] section in trac.ini)](/share/chrome/site/your_project_logo.png)