Re: XL C++ compiler error message map template not included due to compiler version

2023-01-23 Thread Joseph Reichman
I have a Windows DLL that open parses Assembler SYSADATA using fopen and fread those api are there on XL. Rather than re-write the code (a I could use the functionality on the mainframe) I decided to upload it and compile it) The first program or dll function is really simple all it does is

Re: XL C++ compiler error message map template not included due to compiler version

2023-01-23 Thread David Crayford
On 23/1/23 22:29, Paul Gorlinsky wrote: C++ is an extension to C… staying current with Visual Studio releases will help. Microsoft has been making lots of enhancements trying to catch up to the current C/C++ standards. I wouldn't use the full fat Visual Studio. Far better off using VS Code

Re: Transmitting SMF records

2023-01-23 Thread Andrew Rowley
On 20/01/2023 7:07 am, Glenn Wilcock wrote: Late to the party on this discussion... DFSMS recently shipped a new utility named GDKUTIL. It converts z/OS data sets and UNIX files to cloud objects and visa-versa. Reading the documentation, the following note looks like a problem:

IGGCSI00 - NVSNATTR

2023-01-23 Thread Pierre Fichaud
I asked for NVSMATTR,DEVTYP, DSCBTTR and VOLSER for a PDSE version 1. R15 was 0 after the call to IGGCSI. The DEVTYP, DSCBTTR and VOLSER were fine. I was expecting NVSMATTR to have a value of 'L' for a PDSE but I got 'Q'. This isn't documented. I was hoping to identify a PDSE (ve or v2) before

Re: IBM's Connect:Direct for z/OS;Batch Override=Y, SNODEID= use

2023-01-23 Thread Cieri, Anthony
This might get you started This is the PROCESS This PROCESS takes a catalogued dataset from the Sending node and transmits it to a new dataset on the receiving nodes. It also uses extended compression!!! COPYDSN PROCESS SNODE=

Re: Transmitting SMF records

2023-01-23 Thread Andrew N Wilt
Hi Michael, Unfortunately, the online publications haven't been updated yet. I believe you will see the changes in the next major update of the manuals in 8 months or so. Knowing it would take a while, I put the pdf of the changes out on the web with the APAR. If you have any

Re: DFSORT APAR

2023-01-23 Thread kekronbekron
Thank you very much Sri! What had happened to it? I really miss the old TechDocs site. With that, I could have at least went back all the way to the first page, and scrape APAR name, title, and URLs. Something like this (https://public.dhe.ibm.com/s390/newfunctionapars/mvsstore.zosnewfu.html)

Re: XL C++ compiler error message map template not included due to compiler version

2023-01-23 Thread Joseph Reichman
Says supports IBM Open XL C/C++ supports up to C17, C18 and C++17 language standards. On Mon, Jan 23, 2023 at 9:47 AM Paul Gorlinsky mailto:p...@atsmigrations.com> > wrote: Search ibm zOS xl c https://www.ibm.com/products/xl-cpp-compiler-zos

Re: XL C++ compiler error message map template not included due to compiler version

2023-01-23 Thread Paul Gorlinsky
IBM Open XL C/C++ supports up to C17, C18 and C++17 language standards. It uses the Clang command line interface, which significantly improves cross platform compatibility for C/C++ applications. Vs2022 is still C11 kinda… not fully implemented

Re: DFSORT APAR

2023-01-23 Thread Sri h Kolusu
KB, As promised, we have restored the info apar and it is available here https://www.ibm.com/support/pages/apar/II13495 Thanks, Kolusu DFSORT Development IBM Corporation -Original Message- From: IBM Mainframe Discussion List On Behalf Of Sri h Kolusu Sent: Saturday, January 21,

Re: LDAP with TS7700 and/or DS8K's

2023-01-23 Thread Benik, John E
I imagine HMC and LDAP would be for AOS access on the DS8K's, but it also sounds like setting up the TS7700 would be a little more involved and a little more complicated. I'd be curious as to the reasons you decided to go the LDAP direction, and any pros or cons you may have found. Regards,

Re: XL C++ compiler error message map template not included due to compiler version

2023-01-23 Thread Paul Gorlinsky
Search ibm zOS xl c https://www.ibm.com/products/xl-cpp-compiler-zos -- For IBM-MAIN subscribe / signoff / archive access instructions, send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN

Re: XL C++ compiler error message map template not included due to compiler version

2023-01-23 Thread Joseph Reichman
Always forgot those case sensitive. I am on VS pro 2022 and z/os 2.5 B version would you know at what level the XL C\C++ compiler is at I mean ANSI is know I think C++ 20 is that where XL C++ is ? thanks -Original Message- From: IBM Mainframe Discussion List On Behalf Of Paul

Re: XL C++ compiler error message map template not included due to compiler version

2023-01-23 Thread Paul Gorlinsky
BOOL is 4bytes with windows… TRUE and FALSE are 1 and 0… bool is a single unsigned byte and true and false are the proper states. C++ is an extension to C… staying current with Visual Studio releases will help. Microsoft has been making lots of enhancements trying to catch up to the current

Re: XL C++ compiler error message map template not included due to compiler version

2023-01-23 Thread Joseph Reichman
Thanks was running the pre-processor should of added /CXX pre-processor got 0 Btw would you know what version of C++ this is compatible with is it C++ 20 I uploaded my Windows code a lot of things that I thought were ANSI I know find out are windows specific like BOOL Thanks again

Re: XL C++ compiler error message map template not included due to compiler version

2023-01-23 Thread David Crayford
Looks like your invoking the C compiler not C++. > On 23 Jan 2023, at 11:15, Joseph Reichman wrote: > > Hi > > > > I got this error when trying to include template > > > > > > // map standard header > > > > > > #error