Author Topic: O2 equivalent for program version info  (Read 899 times)

0 Members and 1 Guest are viewing this topic.

chrisc

  • Guest
O2 equivalent for program version info
« on: March 11, 2018, 12:39:23 PM »
Hello

what would be the equivalent statements in o2 to declare the program version info

in PB we use the #RESOURCE statements to do it as below

Code: [Select]
#RESOURCE VERSIONINFO
  #RESOURCE FILEVERSION 1, 0, 0, 0
  #RESOURCE PRODUCTVERSION 1, 0, 0, 0
  #RESOURCE STRINGINFO "0409", "04B0"
  #RESOURCE VERSION$ "Comments",         "myprogram"
  #RESOURCE VERSION$ "CompanyName",      "My company "
  #RESOURCE VERSION$ "FileDescription",  "myprogram.exe"
  #RESOURCE VERSION$ "FileVersion",      "1.0"
  #RESOURCE VERSION$ "InternalName",     "myprogram"
  #RESOURCE VERSION$ "LegalCopyright",   "Copyright(c) 2018 My company"
  #RESOURCE VERSION$ "LegalTrademarks",  "myprogram   systems"
  #RESOURCE VERSION$ "OriginalFilename", "myprogram.exe"
  #RESOURCE VERSION$ "ProductName",      "myprogram.exe"
  #RESOURCE VERSION$ "ProductVersion",   "1.0"                   

thanxx for help


chrisc

  • Guest
Re: O2 equivalent for program version info
« Reply #1 on: March 12, 2018, 03:36:34 AM »
Any help for this?

jcfuller

  • Guest
Re: O2 equivalent for program version info
« Reply #2 on: March 12, 2018, 04:17:33 AM »
O2Randasm

James