CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: lucky6969b

Search: Search took 0.03 seconds.

  1. Re: one header file defines a struct and the other uses it.

    Sorry, I have solved it myself

    First
    AllocMeshHierarchy.h
    #include "mesh.h"

    Second
    AllocMeshHierarchy.cpp
    #include "AllocMeshHierarchy.h"
  2. one header file defines a struct and the other uses it.

    // mesh.h
    struct D3DXMESHCONTAINER_DERIVED
    {
    };


    // allocmeshhierarchy.h
    #include "mesh.h"
    void GenerateSkinnedMesh (LPDIRECT3DDEVICE9 pDevice, D3DXMESHCONTAINER_DERIVED* pMeshContainer);
Results 1 to 2 of 2





Click Here to Expand Forum to Full Width

Featured