CPI_InterfacePart.c
上传用户:tuheem
上传日期:2007-05-01
资源大小:21889k
文件大小:1k
- ////////////////////////////////////////////////////////////////////////////////
- #include "stdafx.h"
- #include "globals.h"
- #include "CPI_InterfacePart.h"
- ////////////////////////////////////////////////////////////////////////////////
- //
- //
- //
- void IP_Invalidate(CP_HINTERFACEPART hPart)
- {
- CPs_InterfacePart* pIP = (CPs_InterfacePart*)hPart;
- CP_CHECKOBJECT(pIP);
- InvalidateRect(IF_GetHWnd(pIP->m_hOwner),
- &pIP->m_rLocation, FALSE);
- }
- //
- //
- //
- void IP_Destroy(CP_HINTERFACEPART hPart)
- {
- CPs_InterfacePart* pIP = (CPs_InterfacePart*)hPart;
- CP_CHECKOBJECT(pIP);
- if(pIP->Destroy_PrivateData)
- pIP->Destroy_PrivateData(pIP);
- free(pIP);
- }
- //
- //
- //