Erweitern Minimieren
Dieser Artikel wurde noch nicht bewertet - Dieses Thema bewerten.

__addfsbyte, __addfsword, __addfsdword

Microsoft Specific

Add a value to a memory location specified by an offset relative to the beginning of the FS segment.


void __addfsbyte( 
   unsigned long Offset, 
   unsigned char Data 
);
void __addfsword( 
   unsigned long Offset, 
   unsigned short Data 
);
void __addfsdword( 
   unsigned long Offset, 
   unsigned int Data 
);
[in] Offset

The offset from the beginning of FS.

[in] Data

The value to add to the memory location.

Intrinsic

Architecture

__addfsbyte

x86

__addfsword

x86

__addfsdword

x86

These routines are available only as intrinsics.

Fanden Sie dies hilfreich?
(1500 verbleibende Zeichen)

Community-Beiträge

HINZUFÜGEN
© 2013 Microsoft. Alle Rechte vorbehalten.