Jump to content

alank2

Members
  • Content Count

    115
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by alank2

  1. Thanks everyone; I'll give the RCDATA thing a try and see how well it works for me.
  2. I am trying to get the programdata folder. I've been using: cppbuilder 10.3.3 LPITEMIDLIST pidl SHGetSpecialFolderLocation(NULL, CSIDL_COMMON_APPDATA, &pidl) SHGetPathFromIDListW(pidl, APath) This works fine in a VCL application, but a FireMonkey application, none of it is recognized. I tried to include <shlobj_core.h>, but this gives 1500+ warnings about the below and then fails. [bcc32 Warning] shobjidl_core.h(26477): W8026 Functions with exception specifications are not expanded inline Full parser context mycode.cpp(33): #include c:\program files (x86)\embarcadero\studio\20.0\include\windows\sdk\shlobj_core.h shlobj_core.h(86): #include c:\program files (x86)\embarcadero\studio\20.0\include\windows\sdk\shobjidl_core.h shobjidl_core.h(26477): decision to instantiate: ACTIVATEOPTIONS |(ACTIVATEOPTIONS,ACTIVATEOPTIONS) throw() --- Resetting parser context for instantiation... I was using this function because this code has to run on some older compilers, but if I can't get it to work I can use something else.
  3. alank2

    SHGetSpecialFolderLocation in FireMonkey

    Thank you - I disabled the warnings and that did solve the problem: #pragma warn -8026 #pragma warn -8027 #include <shlobj_core.h> #pragma warn .8027 #pragma warn .8026 I like that better than my other approach.
  4. alank2

    SHGetSpecialFolderLocation in FireMonkey

    I found this page: https://docwiki.embarcadero.com/RADStudio/Alexandria/en/Standard_RTL_Path_Functions_across_the_Supported_Target_Platforms And then found this: UnicodeString us; us=System::Ioutils::TPath::GetPublicPath();
  5. I have a project that builds a DLL and I have two different .DEF files (one for WIN32, and for WIN64). I want to avoid making two projects and so I've been removing/adding the correct .DEF file before I build that platform, is there a better way?
  6. Interesting - I was reading the differences page and this came up: Clang-enhanced C++ compilers do not allow the use of sizeof in a preprocessor directive, such as #if sizeof(ATypeName) > 20. How can one then test for sizes if this is not an option - is there a workaround/alternative method?
  7. Three? clang classic What else?
  8. Yes, that is exactly what I am trying to do. >Can you confirm that you are using the clang32 compiler for your 32bit code (if not then first thing to try is to use the clang32 compiler - maybe it's name mangling will be the same as the clang64 (I haven't checked this)). I am using the classic compiler, I just have more experience with it so I stick with it. I would think the clang compiler would still mangle/underscore the names for 32-bit code.
  9. I still have some projects in the old bcb6 that I need to compile sometimes. One thing I noticed is that if I create a new win32 console mode application, it doesn't let me replace main; int main(int argc, char* argv[]) With wmain: int wmain(int argc, wchar_t* argv[]) In cppb10 there is an option _TCHAR maps to where you can select char or wchar_t and this seems to clue the linker in to look for main or wmain. Is there an equivalent option for bcb6? (for anyone who remembers this old compiler!) I tried looking in the compiler/linker settings, but I am missing it or it doesn't exist.
  10. alank2

    old BCB6 question about wmain

    Thanks for checking! I found the option -WU mentioned in the help and it works at the command line, but putting it in CFLAG1 in the BPR file did not accomplish anything.
  11. Sorry Remy; I saw the "General Help", but didn't look at its parent folder. I appreciate the help.
  12. No, it comes up with an error: [ilink32 Warning] Warning: Attempt to export non-public symbol 'CCfgClassNew' The problem is that 32-bit mangles the name with an underscore and 64-bit does not, which is why I am using the DEF file to unmangle the 32-bit version of the DLL so it and the 64-bit version have consistent names. ALSO, one more odd thing. if the DEF file changes in any way, this error is produced when trying to build: [ilink32 Error] Invalid command line switch for "ilink32". Parameter "ItemSpec" cannot be null. The way to fix it is to remove the DEF file and add the DEF file back again, then it will build without the error.
  13. Everyone, maybe I should have specified C++Builder. The DEF files are for compiling two different versions, 32-bit and 64-bit DLL's. 32-bit version top two lines: EXPORTS CCfgClassNew=_CCfgClassNew 64-bit version top two lines: EXPORTS CCfgClassNew=CCfgClassNew The 64-bit lacks the underscore, my goal here being to produce a DLL that uses the same name for the function no matter whether it is 32-bit or 64-bit. I want to access it as CCfgClassNew either way. Maybe there is no way to do this in a DEF file and I have to do different projects.
  14. The line of code is this: AData[ui3++]=(AData[ui3]<<4) | (tow_lower(AString[ui1])-'a'+10); I know I am incrementing ui3 in the destination AFTER it is being set. I am using ui3 in the expression, but it shouldn't be changed until the end. Why the warning?
  15. I am surprised at this. Clearly it can't assign a value before it evaluates a value. I can put the increment on the next line to appease it. Isn't there a definition or design about evaluation order?
  16. I don't think these directives work in a DEF file.
  17. alank2

    Using a C++ Class in Delphi

    Is there a way to do this? What I have done successfully is create functions that access the class, put them in a DLL, and then call that DLL from Delphi which does work, but if there is another way it is probably an easier way.
  18. I have a C++ Builder service application that uses a timer TProcess to do something every 60 seconds. The "something" was processing some data and making a SQL call. I was accessing one of the query columns outside of a try catch block and it was throwing an exception because I was accessing it as an integer and it was a bit type and needed to be accessed as a boolean. I get the error and how to fix it, but I am trying to troubleshoot how to stop the exception from being unhandled at a higher lever then leaving the service in a stuck state. try { while (!Terminated || !TProcess->Enabled) //do not quit if process is running until it is finished { ServiceThread->ProcessRequests(true); Sleep(250); } } catch(Exception &exception) { log1.Logf(L"ERROR: %s (main loop)", exception.Message.w_str()); } At first I just had what was in the try block above on its own. Then I wrapped it in the try block and expected that this would catch the exception and at least log it. What I don't understand is why the above did not catch the exception. I repeated the test and it still hung with no log message. When I moved the code that accesses the SQL field into its own try catch block with logging, it did log the error related to the issue.
  19. alank2

    Exception catching in a service

    How would you wait for the thread to stop? The current method does wait for any process running to finish. I get how to trigger the thread to stop using the onstop/onshutdown events, but where do you actually make it wait on the thread?
  20. alank2

    Exception catching in a service

    Thanks for the tip Remy; I'll give that approach a try as well.
  21. alank2

    Exception catching in a service

    Thanks Anders; my code snippet above was from within ServiceExecute. I appreciate the explanation, that makes sense!
  22. I am using TSslHttpCli to access a webapi that requires NTLM. An odd thing is happening. With their production environment, it works, but with their development environment, it doesn't. I have tested both with curl using the --ntlm option and with curl, they both work, but with my code/ICS, only the production works. With the development I get a "401 - Unauthorized: Access is denied due to invalid credentials." returned. I thought it was their login in formation, but since it works with curl I have to assume there is something different in their webapi between the two environments. Are there any settings or things I can configure in ICS to try something different? I am setting: SslHttpCli1->ServerAuth=httpAuthNtlm; currently. I also upgraded from ICS 859 to 869 with no change in behavior. production api still works, development api does not.
  23. I saw those notes, but I wondered if they meant that a system follows the compatibility level of the registry setting. I figured the compatibility level that the library/components were using was separate from that, or is LmCompatLevel picked up someone from the registry somewhere?
  24. After looking through the source recommended above (OverbyteIcsHttpProt.pas and OverbyteIcsNtlmMsgs.pas), I found a LM compatibility level. It was set to 0 and I don't see it exposes in the properties of SSLHTTPCli, but I changed it using: SslHttpCli1->LmCompatLevel=1; And this fixed the issue!
  25. Thanks FPiette and Angus for the help; I appreciate it!
×