Friday, November 21, 2008

Thursday, November 20, 2008

GCC-Inline-Assembly-HOWTO

GCC-Inline-Assembly-HOWTO

Friday, November 7, 2008

Compile FVM using VS 2005

1) CodeGuru: BiSplitter 1.1
2) CodeGuru: Adding a drop arrow to a toolbar button
3) Change OnViewDropDown to use NMHDR structrue and cast it to NMTOOLBAR as follows:

void CMainFrame::OnToolbarDropDown(NMHDR* pnmtb, LRESULT *plr)
{
NMTOOLBAR* pTemp = (NMTOOLBAR*) pnmtb;
}

Simiar to here: CodeProject: Adding a drop arrow to a toolbar button. Free source code and programming help

4) Download "MS detours" package, compile, and copy detours.lib and detoured.lib to the souce directory of /fvmdll

Tuesday, November 4, 2008

build vmware tools for Ubuntu guest

sudo apt-get install build-essential

sudo apt-get install linux-headers-$(uname -r)

reference:
http://blogs.tech-recipes.com/johnny/2006/09/05/installing-vmware-tools-for-ubuntu-linux/