[推荐]SMPlayer for Windows
2007-09-08 19:31 | Filed Under Software |
一个漂亮的MPlayer外壳,最早好像只有Linux下的版本
现在有了Windows版本,嫌MPlayer界面简陋的可以尝试这个了
下载地址的安装包中已经包含了完整的MPlayer,直接下载安装即可

项目主页:http://smplayer.sourceforge.net/en/index.php
下载:http://downloads.sourceforge.net/smplayer/smplayer_0.5.51_full_setup.exe
相关日志
第一个C++程序
2007-04-12 15:21 | Filed Under C/CPP |
开始学习C++,用惯了java以后觉得这东西真是麻烦。。。
用unicode还挺麻烦的,了解了一下Windows API,学海无涯啊。
- #include <Windows.h>
- #include <string.h>
- #include <iostream>
- using namespace std;
- void ListFile(void);
- int wmain(int argc, TCHAR* argv[]) {
- locale loc ("Chinese-simplified");
- wcout.imbue(loc);
- if (argc > 1) {
- SetCurrentDirectory(argv[1]);
- }
- ListFile();
- return 0;
- }
- void ListFile(void) {
- WIN32_FIND_DATA fd;
- ZeroMemory(&fd, sizeof(WIN32_FIND_DATA));
- TCHAR currDir[255];
- ZeroMemory(currDir, 255);
- GetCurrentDirectory(255, currDir);
- HANDLE hFile = FindFirstFile(L"*.*", &fd);
- if (hFile != INVALID_HANDLE_VALUE) {
- do {
- if (fd.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) {
- // This is a directory entry. Ignore the “.” and “..” entries.
- if (! (fd.cFileName[0] == '.' && (fd.cFileName[1] == 0 || fd.cFileName[1] == '.'))) {
- SetCurrentDirectory(fd.cFileName);
- wcout << "Directory changed to:" << currDir << "\\" << fd.cFileName << endl;
- ListFile();
- SetCurrentDirectory(currDir);
- wcout << "Directory changed to:" << currDir << endl;
- }
- } else {
- wcout << fd.cFileName << endl;
- }
- } while (FindNextFile(hFile, &fd));
- }
- FindClose(hFile);
- }
相关日志
Windows Server 2003 Service Pack 2(32-bit x86) 中文版
2007-03-27 09:23 | Filed Under Software |
下载:轻点
升级完没啥感觉,就是uxtheme.dll需要重新破解
补充:类似于升级SP1时候的问题,升级完后IE在解析脚本时出现很多问题,建议直接安装集成版而不是通过升级方式安装
标签:sp, uxtheme, windows相关日志
Windows Server 2003 Service Pack 2 正式发布
2007-03-14 10:30 | Filed Under Software |
千呼万唤始出来啊,不过暂时没有中文版的
- Windows Server 2003 Service Pack 2 (32-bit x86)
- Windows Server 2003 Service Pack 2 for x64 Editions
- Windows Server 2003 Service Pack 2 for Itanium-based Systems
相关日志



