home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a007 / 1.ddi / NETINIT.C < prev    next >
Encoding:
C/C++ Source or Header  |  1992-10-15  |  1.2 KB  |  37 lines

  1. #include <stdio.h>
  2. #include "pxengine.h"
  3.  
  4. /* The network control directory is the network directory where the     */
  5. /* PARADOX.NET file is located. Be sure that your network account       */
  6. /* has the appropriate access (read/write,etc) to the directory         */
  7. /* that contains the .NET file. Also make sure that the drivers         */
  8. /* for your particular network are loaded and your station is logged    */
  9. /* logged into the network.                                             */
  10.  
  11. /* Change the #define below to reflect the location of PARADOX.NET.     */
  12. /* Be sure to use double backslash characters (\\) to separate path     */
  13. /* elements, for example, "P:\\DATA\\PDOXDATA\\".                       */
  14.  
  15. #define NETDIR    ""
  16.  
  17. /* Change the #define below so that it is appropriate for your network. */
  18.  
  19. #define NETTYPE   NETSHARE
  20.  
  21. int main(void)
  22. {
  23.   PXCODE pxErr;
  24.  
  25.   /* Attempt to initialize Engine. */
  26.  
  27.   printf("Attempting to initialize the Engine.\n");
  28.   if ((pxErr = PXNetInit(NETDIR,NETTYPE,DEFUSERNAME)) != PXSUCCESS)
  29.     printf("%s\n", PXErrMsg(pxErr));
  30.   else
  31.   {
  32.     printf("Shutting down the Engine.\n");
  33.     PXExit();
  34.   }
  35.   return(pxErr);
  36. }
  37.