import 'package:flutter/material.dart';
class BotonEnviarAccesible extends StatelessWidget {
final VoidCallback? onPressed;
const BotonEnviarAccesible({Key? key, this.onPressed}) : super(key: key);
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| org 0 ; We use "org 0" so Relative Virtual Addresses (RVAs) are easy. | |
| ; This means that when we want an absolute Virtual Address we have | |
| ; to add IMAGE_BASE to the RVA (or whatever the base of that section is) | |
| IMAGE_BASE equ 0x400000 | |
| SECT_ALIGN equ 0x200 | |
| FILE_ALIGN equ 0x200 | |
| msdos_header: | |
| .magic db 'MZ' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //www.lsauer.com 2012 | |
| //author: Microsoft Inc. | |
| //Type: tab-separated flatfile / datatable | |
| Variable Type Description | |
| %ALLUSERSPROFILE% Local Returns the location of the All Users Profile. | |
| %APPDATA% Local Returns the location where applications store data by default. | |
| %CD% Local Returns the current directory string. | |
| %CMDCMDLINE% Local Returns the exact command line used to start the current Cmd.exe. | |
| %CMDEXTVERSION% System Returns the version number of the current Command Processor Extensions. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //www.lsauer.com 2012 | |
| //author: Microsoft Inc. | |
| //Type: tab-separated flatfile / datatable | |
| Variable Type Description | |
| %ALLUSERSPROFILE% Local Returns the location of the All Users Profile. | |
| %APPDATA% Local Returns the location where applications store data by default. | |
| %CD% Local Returns the current directory string. | |
| %CMDCMDLINE% Local Returns the exact command line used to start the current Cmd.exe. | |
| %CMDEXTVERSION% System Returns the version number of the current Command Processor Extensions. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /***************************************************************************** | |
| * Copyright (c) 2011 Kenneth Waters | |
| * | |
| * | |
| * Permission is hereby granted, free of charge, to any person obtaining a | |
| * copy of this software and associated documentation files (the "Software"), | |
| * to deal in the Software without restriction, including without limitation | |
| * the rights to use, copy, modify, merge, publish, distribute, sublicense, | |
| * and/or sell copies of the Software, and to permit persons to whom the | |
| * Software is furnished to do so, subject to the following conditions: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #if !defined(__GNUC__) || ((__GNUC__ * 10000 + __GNUC_MINOR__ * 100 + __GNUC_PATCHLEVEL__) < 40800) | |
| # error "This program requires GNU C compiler v4.8+!" | |
| #endif | |
| #include <stdio.h> | |
| #include <stdbool.h> | |
| #define PRINT_TEST_CPU_SUPPORT_RESULT(inst) printf("\t%-7s: %d\n", inst, __builtin_cpu_supports(inst)?1:0) | |
| #define PRINT_TEST_CPU_TYPE_RESULT(inst) printf("\t%-12s: %d\n", inst, __builtin_cpu_is(inst)?1:0) |

