Restored from previous forum. Originally posted by Rings.
So i heared (or just a rumour ?)
that AND,NOR and OR will included in next upcoming versions.
What about XOR , XAND ?
In my vlink i will include encyption, using the XOR operator
like
G=P XOR T
or must i use inline asm ?
or are there other (undocumented) solutions ?
Siggi
[Implemented] XOR
-
- PureBasic Guru
- Posts: 16777133
- Joined: Tue Apr 22, 2003 7:42 pm
-
- PureBasic Guru
- Posts: 16777133
- Joined: Tue Apr 22, 2003 7:42 pm
-
- PureBasic Guru
- Posts: 16777133
- Joined: Tue Apr 22, 2003 7:42 pm
-
- PureBasic Guru
- Posts: 16777133
- Joined: Tue Apr 22, 2003 7:42 pm
-
- PureBasic Guru
- Posts: 16777133
- Joined: Tue Apr 22, 2003 7:42 pm
-
- PureBasic Guru
- Posts: 16777133
- Joined: Tue Apr 22, 2003 7:42 pm
Restored from previous forum. Originally posted by PB.
How would I pass this to your XOR procedure?
PB - Registered PureBasic Coder
Hi Fred, I have some source code that looks like this:Procedure XOR(a,b)
MOV eax,a
XOR eax,b
MOV a,eax
ProcedureReturn a
EndProcedure
Code: Select all
WindowLong Xor WS_EX_APPWINDOW
PB - Registered PureBasic Coder