I have a project with the following components:
- nx
- nx_dhcp
- tx
- sf_el_nx
- r_cgc
- r_elc
- r_ioport
I attempted to add in nx_http_server and it's required component nx_md5, but when I add them I get the following compiler errors:
C:\SVN\Engineers\NIhle\S7 Testing\NET_TEST\synergy\ssp\inc\framework\el\nx_application_layer/nx_http_server.h:352:5: error: unknown type name 'FX_MEDIA'
FX_MEDIA *nx_http_server_media_ptr; /* Pointer to media control block */
^
C:\SVN\Engineers\NIhle\S7 Testing\NET_TEST\synergy\ssp\inc\framework\el\nx_application_layer/nx_http_server.h:365:5: error: unknown type name 'FX_FILE'
FX_FILE nx_http_server_file; /* HTTP file control block */
^
C:\SVN\Engineers\NIhle\S7 Testing\NET_TEST\synergy\ssp\inc\framework\el\nx_application_layer/nx_http_server.h:472:109: error: unknown type name 'FX_MEDIA'
UINT _nxe_http_server_create(NX_HTTP_SERVER *http_server_ptr, CHAR *http_server_name, NX_IP *ip_ptr, FX_MEDIA *media_ptr, VOID *stack_ptr, ULONG stack_size, NX_PACKET_POOL *pool_ptr,
I proceeded to include fx and all it's prerequisites and I am still getting these same errors.
Is there some other necessary component I'm missing?