Win32 data types equivalant in Linux

前端 未结 4 1466
故里飘歌
故里飘歌 2021-02-09 17:41

I am trying to convert a C++ library which is using widely DWORD, CString and BYTE in the program, and now I am converting the code from C++ Win32 library to linux program . Als

4条回答
  •  闹比i
    闹比i (楼主)
    2021-02-09 18:07

    typedef unsigned long DWORD;
    typedef unsigned char BYTE;
    
    CString -> maybe basic_string ?
    

提交回复
热议问题