Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

37 lines
990 B

  1. //+-------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. //
  5. // Copyright (C) Microsoft Corporation, 1998 - 1998
  6. //
  7. // File: d3drmarrayobj.cpp
  8. //
  9. //--------------------------------------------------------------------------
  10. // d3drmArrayObj.cpp : Implementation of CDirectApp and DLL registration.
  11. #include "stdafx.h"
  12. #include "Direct.h"
  13. #include "dms.h"
  14. #include "d3drmArrayObj.h"
  15. CONSTRUCTOR( _dxj_Direct3dRMObjectArray, {} );
  16. DESTRUCTOR ( _dxj_Direct3dRMObjectArray, {} );
  17. GETSET_OBJECT ( _dxj_Direct3dRMObjectArray );
  18. GET_DIRECT_R(_dxj_Direct3dRMObjectArray, getSize, GetSize, long);
  19. #pragma message ("TODO D3DRMObjectArray")
  20. HRESULT C_dxj_Direct3dRMObjectArrayObject::getElement(long i, I_dxj_Direct3dRMObject **obj){
  21. //HRESULT hr;
  22. //hr=m__dxj_Direct3dRMObjectArray->GetElement((DWORD)i,&realobj);
  23. //if FAILED(hr) return hr;
  24. //INTERNAL_CREATE(_dxj_Direct3dRMObject,(IDirect3DRMObject)realobj,obj);
  25. return E_FAIL;
  26. }